halts changed to breakpoint
authorClaus Gittinger <cg@exept.de>
Wed, 06 Mar 2013 10:01:55 +0100
changeset 2961 f28135198d42
parent 2960 9b1e724cb318
child 2962 5eee09525324
halts changed to breakpoint
ProjectBuilder.st
--- 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"