# HG changeset patch # User Claus Gittinger # Date 1362560515 -3600 # Node ID f28135198d42cca1537343ca404781b42268014d # Parent 9b1e724cb3185750a2ae1b6d375579ad91a5a36a halts changed to breakpoint diff -r 9b1e724cb318 -r f28135198d42 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"