#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Fri, 01 Sep 2017 14:26:00 +0200
changeset 3483 05354d795b15
parent 3482 de4a67d603bb
child 3484 cc691402a3de
#REFACTORING by cg class: MenuEditor::ImageResourceEditor changed: #doBrowseImageClass
MenuEditor.st
--- 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