Raise signal on device open error.
authorStefan Vogel <sv@exept.de>
Tue, 21 May 2002 10:44:32 +0200
changeset 3632 a25578a48a6c
parent 3631 23668c5e14c4
child 3633 2f7d04723b1b
Raise signal on device open error.
WinWorkstation.st
--- a/WinWorkstation.st	Tue May 21 10:10:14 2002 +0200
+++ b/WinWorkstation.st	Tue May 21 10:44:32 2002 +0200
@@ -11894,7 +11894,9 @@
     ].
 
     displayId := self primInitializeFor:aDisplayName.
-    displayId isNil ifTrue:[^ self].
+    displayId isNil ifTrue:[
+	self deviceOpenErrorSignal raiseWith:aDisplayName
+    ].
 
     dispatching := false.
     isSlow := false.
@@ -14750,6 +14752,6 @@
 !WinWorkstation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.219 2002-01-31 17:30:08 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.220 2002-05-21 08:44:32 stefan Exp $'
 ! !
 WinWorkstation initialize!