AbstractLauncherApplication.st
changeset 3778 5595e6f544ab
parent 3741 a9d08a1b0d7d
child 3782 d30c08c77963
--- a/AbstractLauncherApplication.st	Tue Aug 06 10:47:38 2002 +0200
+++ b/AbstractLauncherApplication.st	Wed Aug 07 14:58:08 2002 +0200
@@ -751,12 +751,18 @@
 
     self withWaitCursorDo:[
         UserPreferences systemBrowserClass
-            browseReferendsOf:(Smalltalk underclaredPrefix , '*')
+            browseReferendsOf:(Smalltalk undeclaredPrefix , '*')
             title:(resources string:'references to undeclared variables')
             warnIfNone:true
     ]
 !
 
+clearUndeclaredVariables
+    "remove all undeclared variables"
+
+    Smalltalk clearUndeclaredVariables
+!
+
 removeAllBreakAndTracePoints
     "remove all break- and trace points"
 
@@ -6437,5 +6443,5 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.199 2002-07-18 12:46:30 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.200 2002-08-07 12:57:54 penk Exp $'
 ! !