changed:
authorClaus Gittinger <cg@exept.de>
Thu, 18 Nov 2010 11:41:18 +0100
changeset 9638 dec674bd410b
parent 9637 a89a667c84ef
child 9639 1995807ab357
changed: #enableHalts #enableHalts: eliminated IgnoreHalts global variable
Tools__BreakpointBrowser.st
--- a/Tools__BreakpointBrowser.st	Wed Nov 17 20:09:56 2010 +0100
+++ b/Tools__BreakpointBrowser.st	Thu Nov 18 11:41:18 2010 +0100
@@ -819,11 +819,15 @@
 !
 
 enableHalts
-    ^ (Smalltalk at:#IgnoreHalt ifAbsent:false) not
+    ^ Smalltalk ignoreHalt not
+
+    "Modified: / 18-11-2010 / 11:24:11 / cg"
 !
 
 enableHalts:aBoolean
-    ^ Smalltalk at:#IgnoreHalt put:aBoolean not
+    ^ Smalltalk ignoreHalt:aBoolean not
+
+    "Modified: / 18-11-2010 / 11:30:03 / cg"
 !
 
 hasSelectionHolder
@@ -1753,11 +1757,11 @@
 !BreakpointBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__BreakpointBrowser.st,v 1.22 2010-10-27 11:37:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__BreakpointBrowser.st,v 1.23 2010-11-18 10:41:18 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__BreakpointBrowser.st,v 1.22 2010-10-27 11:37:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__BreakpointBrowser.st,v 1.23 2010-11-18 10:41:18 cg Exp $'
 ! !
 
 BreakpointBrowser initialize!