*** empty log message ***
authorfm
Wed, 16 Aug 2006 18:21:39 +0200
changeset 9543 b4f82498926b
parent 9542 06d0781c889c
child 9544 5ee38738942e
*** empty log message ***
LibraryDefinition.st
--- a/LibraryDefinition.st	Wed Aug 16 17:59:07 2006 +0200
+++ b/LibraryDefinition.st	Wed Aug 16 18:21:39 2006 +0200
@@ -440,10 +440,11 @@
 bc_dot_def_mappings
     ^ (super bc_dot_def_mappings)
         at:#'LIBRARY_NAME' put:[ self libraryName ];
-        at:#'C_LIBRARY_NAME' put:[ self st2c:self libraryName ];
+        at:#'C_LIBRARY_NAME' put:[ self libraryName ];
         yourself
 
     "Created: / 09-08-2006 / 11:17:59 / fm"
+    "Modified: / 16-08-2006 / 18:19:25 / User"
 !
 
 classLine_libInit_dot_cc_mappings: aClassName
@@ -468,7 +469,7 @@
 libInit_dot_cc_mappings
 
 ^Dictionary new
-    at: #'LIBRARY_NAME' put: [self st2c:self libraryName];
+    at: #'LIBRARY_NAME' put: [self libraryName];
     at: #'PACKAGE' put: [self package];
     at: #'CLASSES' put: [self generateClassLines_libInit_dot_cc];
     at: #'EXTENSION' put: [self generateExtensionLine_libInit_dot_cc];
@@ -476,6 +477,7 @@
     yourself
 
     "Created: / 09-08-2006 / 11:20:24 / fm"
+    "Modified: / 16-08-2006 / 18:19:03 / User"
 !
 
 make_dot_proto_mappings
@@ -906,5 +908,5 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/LibraryDefinition.st,v 1.18 2006-08-16 15:37:54 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LibraryDefinition.st,v 1.19 2006-08-16 16:21:39 fm Exp $'
 ! !