#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Tue, 20 Feb 2018 18:45:52 +0100
changeset 3535 e8ad4febf6f4
parent 3534 39c8a672a8ab
child 3536 38fca9ee0d55
#REFACTORING by stefan class: ImageEditor changed: #commonPostBuild outsource code into #useAlienInfoHolder method
ImageEditor.st
--- a/ImageEditor.st	Tue Feb 20 18:45:29 2018 +0100
+++ b/ImageEditor.st	Tue Feb 20 18:45:52 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1997-1998 by eXept Software AG
               All Rights Reserved
@@ -5698,8 +5696,8 @@
         resourceSelector notNil ifTrue:[
             ^ resources 
                     string:(self modified 
-                            ifTrue:['Image (modified) from: %1 » %2']
-                            ifFalse:['Image from: %1 » %2'])
+                            ifTrue:['Image (modified) from: %1 » %2']
+                            ifFalse:['Image from: %1 » %2'])
                     with:resourceClass name
                     with:resourceSelector
         ].
@@ -6257,10 +6255,12 @@
     ].
 
     "/ using masters infoHolder ?
-    (builder aspectAt:#useAlienInfoLabelHolder) == true ifTrue:[
+    self useAlienInfoLabelHolder ifTrue:[
         (builder componentAt:#mainPanel) layout bottomOffset:0.
         (builder componentAt:#infoBarSubSpec) beInvisible
     ]
+
+    "Modified: / 20-02-2018 / 13:05:30 / stefan"
 !
 
 open