class: Tools::NewSystemBrowser
authorClaus Gittinger <cg@exept.de>
Sun, 05 Jan 2014 14:17:36 +0100
changeset 13737 7d3459bd7a80
parent 13736 5b4288045978
child 13738 07e534de96bd
class: Tools::NewSystemBrowser changed: #browseInheritanceOf #codeMenuEliminateConstant #projectDefinitionDialogFor: #repositoryHistoryForProjects:usingManager:
Tools__NewSystemBrowser.st
--- a/Tools__NewSystemBrowser.st	Sun Jan 05 14:16:34 2014 +0100
+++ b/Tools__NewSystemBrowser.st	Sun Jan 05 14:17:36 2014 +0100
@@ -23894,7 +23894,7 @@
     selectorHolder := sel asValue.
 
     box := Dialog new.
-    (box addTextLabel:(resources string:'Selector to browse inheritance of:')) adjust:#left.
+    box addTextLabel:(resources string:'Selector to browse inheritance of:') adjust:#left.
     inputField := box addComboBoxOn:selectorHolder tabable:true.
     inputField list:LastSearchPatterns.
 
@@ -34873,12 +34873,12 @@
         userFilter := nil asValue.
 
         box := Dialog new.
-        (box addTextLabel:(resources string:'Repository change report')) adjust:#left.
+        box addTextLabel:(resources string:'Repository change report') adjust:#left.
         box addVerticalSpace:20.
 
         y := box yPosition.
-        component := box addTextLabel:(resources string:'List changes since (yyyy-mm-dd):').
-        component width:0.5; adjust:#right; borderWidth:0.
+        component := box addTextLabel:(resources string:'List changes since (yyyy-mm-dd):') adjust:#right.
+        component width:0.5; borderWidth:0.
         box yPosition:y.
         timeGoalListPop := box addComboBoxOn:timeGoal tabable:true.
         timeGoalListPop width:0.5; left:0.5; immediateAccept:true; acceptOnLeave:false; cursorMovementWhenUpdating:#beginOfLine.
@@ -34901,8 +34901,8 @@
             moduleFilterHolder := nil.
         ] ifFalse:[
             y := box yPosition.
-            component := box addTextLabel:(resources string:'For CVS repository (empty for all):').
-            component width:0.5; adjust:#right; borderWidth:0.
+            component := box addTextLabel:(resources string:'For CVS repository (empty for all):') adjust:#right.
+            component width:0.5; borderWidth:0.
             box yPosition:y.
             moduleFilterPop := box addComboBoxOn:moduleFilterHolder tabable:true.
             moduleFilterPop width:0.5; left:0.5; immediateAccept:true; acceptOnLeave:false; cursorMovementWhenUpdating:#beginOfLine.
@@ -34910,8 +34910,8 @@
         ].
 
         y := box yPosition.
-        component := box addTextLabel:(resources string:'For user (empty for all):').
-        component width:0.5; adjust:#right; borderWidth:0.
+        component := box addTextLabel:(resources string:'For user (empty for all):') adjust:#right.
+        component width:0.5; borderWidth:0.
         box yPosition:y.
         userFilterPop := box addComboBoxOn:userFilter tabable:true.
         userFilterPop width:0.5; left:0.5; immediateAccept:true; acceptOnLeave:false; cursorMovementWhenUpdating:#beginOfLine.
@@ -35428,7 +35428,7 @@
 
     box := DialogBox new.
     box label:'Replacing Literal Constant'.
-    (box addTextLabel:'Replace selected constant by:') adjust:#left.
+    box addTextLabel:'Replace selected constant by:' adjust:#left.
     box addVerticalSpace.
     box addRadioButton:(resources string:'Class Method') on:radioModel value:#classMethod tabable:true.
     box addRadioButton:(resources string:'Class Variable') on:radioModel value:#classVariable tabable:true.
@@ -38681,8 +38681,7 @@
 
     y := box yPosition.
     box addVerticalSpace.
-    label := box addTextLabel:(resources string:'Package-ID (module:directory):').
-    label adjust:#right.
+    label := box addTextLabel:(resources string:'Package-ID (module:directory):') adjust:#right.
     label width:0.3; left:0.0; leftInset:3.
 
     box yPosition:y.
@@ -38705,8 +38704,7 @@
 
     y := box yPosition.
     box addVerticalSpace.
-    label := box addTextLabel:(resources string:'Type:').
-    label adjust:#right.
+    label := box addTextLabel:(resources string:'Type:') adjust:#right.
     label width:0.3; left:0.0; leftInset:3.
     box yPosition:y.
 
@@ -59422,11 +59420,11 @@
 !NewSystemBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowser.st,v 1.2004 2013-12-24 10:51:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowser.st,v 1.2005 2014-01-05 13:17:36 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowser.st,v 1.2004 2013-12-24 10:51:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowser.st,v 1.2005 2014-01-05 13:17:36 cg Exp $'
 !
 
 version_HG
@@ -59435,7 +59433,7 @@
 !
 
 version_SVN
-    ^ '$Id: Tools__NewSystemBrowser.st,v 1.2004 2013-12-24 10:51:32 cg Exp $'
+    ^ '$Id: Tools__NewSystemBrowser.st,v 1.2005 2014-01-05 13:17:36 cg Exp $'
 ! !