AbstractLauncherApplication.st
changeset 3169 0b9d688ca36f
parent 3158 70963eea944a
child 3180 d3ade1ad1361
--- a/AbstractLauncherApplication.st	Fri Sep 14 22:39:46 2001 +0200
+++ b/AbstractLauncherApplication.st	Mon Sep 17 14:54:07 2001 +0200
@@ -1846,44 +1846,67 @@
 
     box addTextLabel:(resources string:'OSI Protocols (addOn package)').
 
-    check := box addCheckBox:(resources string:'Log %1 errors' with:'OSI-ACSE') on:osiACSEErrorLogging.
+    y := box yPosition.
+    check := box addCheckBox:(resources string:'Log %1 Errors' with:'ACSE') on:osiACSEErrorLogging.
+    check width:0.33.
     osiACSEPresent ifFalse:[
         check disable
     ].
-    check := box addCheckBox:(resources string:'Log %1 connection' with:'OSI-ACSE') on:osiACSEConnectionLogging.
+
+    box yPosition:y.
+    check := box addCheckBox:(resources string:'Connections') on:osiACSEConnectionLogging.
     osiACSEPresent ifFalse:[
         check disable
     ].
-    check := box addCheckBox:(resources string:'Log %1 data xfers' with:'OSI-ACSE') on:osiACSEDataLogging.
+    check left:0.33; width:0.33.
+
+    box yPosition:y.
+    check := box addCheckBox:(resources string:'Data Xfer') on:osiACSEDataLogging.
     osiACSEPresent ifFalse:[
         check disable
     ].
+    check left:0.66; width:0.34.
+
 
     box addVerticalSpace.
 
-    check := box addCheckBox:(resources string:'Log %1 errors' with:'OSI-ROSE') on:osiROSEErrorLogging.
+    y := box yPosition.
+    check := box addCheckBox:(resources string:'Log %1 Errors' with:'ROSE') on:osiROSEErrorLogging.
     osiROSEPresent ifFalse:[
         check disable
     ].
-    check := box addCheckBox:(resources string:'Log %1 invokations' with:'OSI-ROSE') on:osiROSEInvokationLogging.
+    check width:0.33.
+
+    box yPosition:y.
+    check := box addCheckBox:(resources string:'Invoactions') on:osiROSEInvokationLogging.
     osiROSEPresent ifFalse:[
         check disable
     ].
-    check := box addCheckBox:(resources string:'Log %1 responses' with:'OSI-ROSE') on:osiROSEResponseLogging.
+    check left:0.33; width:0.33.
+
+    box yPosition:y.
+    check := box addCheckBox:(resources string:'Responses') on:osiROSEResponseLogging.
     osiROSEPresent ifFalse:[
         check disable
     ].
+    check left:0.66; width:0.34.
 
     box addVerticalSpace.
 
-    check := box addCheckBox:(resources string:'Log %1 errors' with:'OSI-CMISE') on:osiCMISEErrorLogging.
+    y := box yPosition.
+    check := box addCheckBox:(resources string:'Log %1 Errors' with:'CMISE') on:osiCMISEErrorLogging.
     osiCMISEPresent ifFalse:[
         check disable
     ].
-    check := box addCheckBox:(resources string:'Log %1 messages' with:'OSI-CMISE') on:osiCMISEMessageLogging.
+    check width:0.33.
+
+    box yPosition:y.
+    check := box addCheckBox:(resources string:'Messages') on:osiCMISEMessageLogging.
     osiCMISEPresent ifFalse:[
         check disable
     ].
+    check left:0.33; width:0.33.
+
 
     box addHorizontalLine.
     box 
@@ -6489,5 +6512,5 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.158 2001-09-12 15:59:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.159 2001-09-17 12:54:07 cg Exp $'
 ! !