BrowserView.st
changeset 1958 669fa8984867
parent 1957 a57c8c39ce2c
child 1959 c3f2f46455dd
--- a/BrowserView.st	Wed Nov 11 15:40:21 1998 +0100
+++ b/BrowserView.st	Thu Nov 12 14:42:41 1998 +0100
@@ -8276,13 +8276,14 @@
                             ('-'                         nil                  )
                             ('flush code'                methodFlushCode      )
                        ).
+            items := items , brkItems.
 
         ] ifFalse:[
 
             Method methodPrivacySupported ifTrue:[
                 items := #(
                                 ('inspect method'            methodInspect        )
-                                ('stc-compile' " 'compile to machine code' "  methodSTCCompile     )
+                                ('stc-compile'               methodSTCCompile     )
                                 ('decompile'                 methodDecompile      )
                                 ('-'                         nil                  )
                                 ('make public'               methodMakePublic     )
@@ -8293,7 +8294,7 @@
             ] ifFalse:[
                 items := #(
                                 ('inspect method'            methodInspect        )
-                                ('compile to machine code'   methodSTCCompile     )
+                                ('stc-compile'               methodSTCCompile     )
                                 ('decompile'                 methodDecompile      )
                            ).
             ].
@@ -8463,7 +8464,7 @@
     "Created: / 23.11.1995 / 12:02:29 / cg"
     "Modified: / 18.12.1995 / 16:20:07 / stefan"
     "Modified: / 29.4.1997 / 11:20:59 / dq"
-    "Modified: / 10.11.1998 / 18:29:26 / cg"
+    "Modified: / 12.11.1998 / 14:36:10 / cg"
 !
 
 methodMove
@@ -12609,6 +12610,6 @@
 !BrowserView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.461 1998-11-11 14:40:21 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.462 1998-11-12 13:42:41 cg Exp $'
 ! !
 BrowserView initialize!