DeviceWorkstation.st
changeset 3804 9331e976c8f0
parent 3803 bdf335907724
child 3829 060ce1cf826f
--- a/DeviceWorkstation.st	Thu Feb 20 14:52:24 2003 +0100
+++ b/DeviceWorkstation.st	Fri Feb 21 15:50:06 2003 +0100
@@ -4259,28 +4259,28 @@
     dispatching ifFalse:[^ self].
 
     self == Display ifTrue:[
-	ExitOnLastClose == true ifFalse:[^ self].
+        ExitOnLastClose == true ifFalse:[^ self].
     ].
     exitOnLastClose == true ifFalse:[^ self].
 
     knownViews notNil ifTrue:[
-	(knownViews findFirst:[:slot | 
-		slot notNil 
-		and:[slot ~~ 0             "/ if there is no non-popup
-		and:[slot isRootView not   "/ non-dialog ...
-		and:[slot isTopView        "/ stop dispatching.
-		and:[slot isPopUpView not
-		and:[slot isModal not
-		"and:[slot realized]"]]]]]]) == 0 ifTrue:[
-	    "/ my last view was closed
-	    dispatching := false.
-	    'DeviceWorkstation [info]: finished dispatch (last view closed)' infoPrintCR.
-	    LastActiveScreen == self ifTrue:[
-		LastActiveScreen := nil.
-		LastActiveProcess := nil.
-	    ].
-	    eventSema signal.  "/ get dispatchLoop out of its wait...
-	]
+        (knownViews findFirst:[:slot | 
+                slot notNil 
+                and:[slot ~~ 0             "/ if there is no non-popup
+                and:[slot isRootView not   "/ non-dialog ...
+                and:[slot isTopView        "/ stop dispatching.
+                and:[slot isPopUpView not
+                and:[slot isModal not
+                "and:[slot realized]"]]]]]]) == 0 ifTrue:[
+            "/ my last view was closed
+            dispatching := false.
+            'DeviceWorkstation [info]: finished dispatch (last view closed)' infoPrintCR.
+            LastActiveScreen == self ifTrue:[
+                LastActiveScreen := nil.
+                LastActiveProcess := nil.
+            ].
+            eventSema notNil ifTrue:[eventSema signal].  "/ get dispatchLoop out of its wait...
+        ]
     ].
 
     "Modified: 19.9.1995 / 11:31:54 / claus"
@@ -7597,7 +7597,7 @@
 !DeviceWorkstation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/DeviceWorkstation.st,v 1.436 2003-02-20 13:52:24 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/DeviceWorkstation.st,v 1.437 2003-02-21 14:50:06 cg Exp $'
 ! !
 
 DeviceWorkstation initialize!