MenuEditor.st
changeset 3483 05354d795b15
parent 3431 ecac7d4db6d0
child 3511 dce70baa771e
--- a/MenuEditor.st	Fri Sep 01 14:24:56 2017 +0200
+++ b/MenuEditor.st	Fri Sep 01 14:26:00 2017 +0200
@@ -4382,15 +4382,16 @@
                 image ~~ (cls perform:sel ifNotUnderstood:nil) ifTrue:[
                     self warn:'The image as returned by #visualFor: is probably provided by another class.\\Showing all implementors of #',sel.
                     "/ sel := #visualFor:.
-                    UserPreferences systemBrowserClass browseImplementorsOf:sel.
+                    SystemBrowser default browseImplementorsOf:sel.
                     ^ self.
                 ].
             ].
-            UserPreferences systemBrowserClass openInClass:(cls class) selector:sel
+            SystemBrowser default openInClass:(cls class) selector:sel
         ]
     ]
 
     "Created: / 20-09-2010 / 13:27:34 / cg"
+    "Modified: / 01-09-2017 / 14:21:02 / cg"
 !
 
 doEditImage