replaced ApliConnection by ACSE
authorClaus Gittinger <cg@exept.de>
Fri, 25 Jun 1999 22:00:30 +0200
changeset 2204 5e6c36eaba35
parent 2203 139c84d10808
child 2205 e468456ef9b5
replaced ApliConnection by ACSE
AbstractLauncherApplication.st
--- a/AbstractLauncherApplication.st	Fri Jun 25 21:46:03 1999 +0200
+++ b/AbstractLauncherApplication.st	Fri Jun 25 22:00:30 1999 +0200
@@ -1276,17 +1276,17 @@
     "/
     "/ osi settings ...
     "/
-    osiACSEPresent := OSI::ApliConnection notNil
-                      and:[OSI::ApliConnection isLoaded].
+    osiACSEPresent := OSI::ACSE notNil
+                      and:[OSI::ACSE isLoaded].
     osiROSEPresent := OSI::ROSE notNil
                       and:[OSI::ROSE isLoaded].
     osiCMISEPresent := OSI::CMISE notNil
                       and:[OSI::CMISE isLoaded].
 
     osiACSEPresent ifTrue:[
-        osiACSEErrorLogging := OSI::ApliConnection errorLogging asValue.
-        osiACSEConnectionLogging := OSI::ApliConnection connectionLogging asValue.
-        osiACSEDataLogging :=  OSI::ApliConnection dataLogging asValue.
+        osiACSEErrorLogging := OSI::ACSE errorLogging asValue.
+        osiACSEConnectionLogging := OSI::ACSE connectionLogging asValue.
+        osiACSEDataLogging :=  OSI::ACSE dataLogging asValue.
     ].
     osiROSEPresent ifTrue:[
         osiROSEErrorLogging := OSI::ROSE errorLogging asValue.
@@ -1420,9 +1420,9 @@
             ].
         ].
         osiACSEPresent ifTrue:[
-            OSI::ApliConnection errorLogging:osiACSEErrorLogging value.
-            OSI::ApliConnection connectionLogging:osiACSEConnectionLogging value.
-            OSI::ApliConnection dataLogging:osiACSEDataLogging value.
+            OSI::ACSE errorLogging:osiACSEErrorLogging value.
+            OSI::ACSE connectionLogging:osiACSEConnectionLogging value.
+            OSI::ACSE dataLogging:osiACSEDataLogging value.
         ].
         osiROSEPresent ifTrue:[
             OSI::ROSE errorLogging:osiROSEErrorLogging value.
@@ -4554,5 +4554,5 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.41 1999-06-25 19:46:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.42 1999-06-25 20:00:30 cg Exp $'
 ! !