Tools__Inspector2.st
changeset 18464 74893c113f66
parent 18380 609fd4a3ebe8
child 18494 4cc60a44f50d
--- a/Tools__Inspector2.st	Fri Oct 12 12:45:02 2018 +0200
+++ b/Tools__Inspector2.st	Fri Oct 12 12:46:10 2018 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2006 by eXept Software AG
 	      All Rights Reserved
@@ -384,52 +382,52 @@
 
 
     "
-     MenuEditor new openOnClass:Tools::Inspector2 andSelector:#mainMenu
-     (Menu new fromLiteralArrayEncoding:(Tools::Inspector2 mainMenu)) startUp
+     MenuEditor new openOnClass:Tools::Inspector2 andSelector:#fileMenu
+     (Menu new fromLiteralArrayEncoding:(Tools::Inspector2 fileMenu)) startUp
     "
 
     <resource: #menu>
 
     ^ 
      #(Menu
-              (
-               (MenuItem
-                  label: 'Exit'
-                  itemValue: closeRequest
-                )
-               (MenuItem
-                  label: '-'
-                )
-               (MenuItem
-                  label: 'Deiconify all Inspectors'
-                  itemValue: deiconifyAllInspectors
-                )
-               (MenuItem
-                  label: '-'
-                )
-               (MenuItem
-                  label: 'Iconify all Other Inspectors'
-                  itemValue: iconifyAllOtherInspectors
-                )
-               (MenuItem
-                  label: 'Iconify all Inspectors'
-                  itemValue: iconifyAllInspectors
-                )
-               (MenuItem
-                  label: '-'
-                )
-               (MenuItem
-                  label: 'Close all Other Inspectors'
-                  itemValue: closeAllOtherInspectors
-                )
-               (MenuItem
-                  label: 'Close all Inspectors'
-                  itemValue: closeAllInspectors
-                )
-               )
-              nil
-              nil
-            )
+        (
+         (MenuItem
+            label: 'Deiconify all Inspectors'
+            itemValue: deiconifyAllInspectors
+          )
+         (MenuItem
+            label: '-'
+          )
+         (MenuItem
+            label: 'Iconify all Other Inspectors'
+            itemValue: iconifyAllOtherInspectors
+          )
+         (MenuItem
+            label: 'Iconify all Inspectors'
+            itemValue: iconifyAllInspectors
+          )
+         (MenuItem
+            label: '-'
+          )
+         (MenuItem
+            label: 'Close all Other Inspectors'
+            itemValue: closeAllOtherInspectors
+          )
+         (MenuItem
+            label: 'Close all Inspectors'
+            itemValue: closeAllInspectors
+          )
+         (MenuItem
+            label: '-'
+          )
+         (MenuItem
+            label: 'Exit'
+            itemValue: closeRequest
+          )
+         )
+        nil
+        nil
+      )
 !
 
 helpMenu