ProjectBuilder.st
changeset 2961 f28135198d42
parent 2958 d842f4a91d44
child 2964 44fd164ad253
--- a/ProjectBuilder.st	Sun Feb 24 21:23:43 2013 +0100
+++ b/ProjectBuilder.st	Wed Mar 06 10:01:55 2013 +0100
@@ -629,7 +629,7 @@
     ].
     classInstVarList := StringCollection new.
     aClass class instVarNames do:[:v |
-(v includes:$_) ifTrue:[self halt].
+    "/ (v includes:$_) ifTrue:[self halt].
         classInstVarList add:('OBJ %1;' bindWith:v)
     ].
     classVarList := StringCollection new.
@@ -925,7 +925,7 @@
     usedCompiler = 'tcc' ifTrue:[^ 'objtcc'].
     usedCompiler = 'lcc' ifTrue:[^ 'objlcc'].
     usedCompiler = 'mingw' ifTrue:[^ 'objmingw'].
-    self halt:'please fill in here'.
+    self halt:'please add compiler here'.
     ^ 'objbc'
 
     "Created: / 03-09-2012 / 19:55:34 / cg"