Launcher.st
changeset 378 7e17a9941cca
parent 377 a40d0dd88c1b
child 379 b7adadee426a
--- a/Launcher.st	Tue Feb 20 23:41:45 1996 +0100
+++ b/Launcher.st	Wed Feb 21 00:02:53 1996 +0100
@@ -663,7 +663,7 @@
     check := box addCheckBox:(resources string:'keep history line in methods') on:historyLines.
     HistoryManager isNil ifTrue:[check disable].
 
-    box addPopUpList:(resources string:'fileIn source mode') on:keepSource.
+    box addPopUpList:(resources string:'fileIn source mode:') on:keepSource.
     keepSource selectionIndex:( keepSourceOptions indexOf:(ClassCategoryReader sourceMode) ifAbsent:1).
 
     box addHorizontalLine.
@@ -714,7 +714,7 @@
         ].
     ].
 
-    box addPopUpList:(resources string:'constant folding') on:constantFolding.
+    box addPopUpList:(resources string:'constant folding:') on:constantFolding.
     constantFolding selectionIndex:( constantFoldingOptions indexOf:(Compiler foldConstants) ifAbsent:1).
 
     box addVerticalSpace.
@@ -771,7 +771,7 @@
     box destroy
 
     "Modified: 10.9.1995 / 19:19:18 / claus"
-    "Modified: 10.2.1996 / 17:26:15 / cg"
+    "Modified: 20.2.1996 / 23:52:33 / cg"
 !
 
 keyboardSetting 
@@ -1206,7 +1206,7 @@
     box := DialogBox new.
     box label:(resources string:'Printer settings').
 
-    printerList := box addPopUpList:(resources string:'printer type') on:printerType.
+    printerList := box addPopUpList:(resources string:'printer type:') on:printerType.
 
     y := box yPosition.
     component := box addTextLabel:(resources string:'print command:').
@@ -1232,7 +1232,7 @@
     ].
     box destroy
 
-    "Modified: 9.2.1996 / 19:52:28 / cg"
+    "Modified: 20.2.1996 / 23:49:34 / cg"
 !
 
 viewStyleSetting 
@@ -2201,5 +2201,5 @@
 !NewLauncher class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Launcher.st,v 1.82 1996-02-20 22:41:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Launcher.st,v 1.83 1996-02-20 23:02:53 cg Exp $'
 ! !