Signal init.
authorStefan Vogel <sv@exept.de>
Tue, 26 Oct 1999 21:38:54 +0200
changeset 2984 6a278fd02e74
parent 2983 33a985356bbd
child 2985 62552b74e805
Signal init.
XWorkstation.st
--- a/XWorkstation.st	Tue Oct 26 20:31:48 1999 +0200
+++ b/XWorkstation.st	Tue Oct 26 21:38:54 1999 +0200
@@ -10,6 +10,8 @@
  hereby transferred.
 "
 
+'From Smalltalk/X, Version:3.5.4 on 26-oct-1999 at 06:32:43 pm'                 !
+
 DeviceWorkstation subclass:#XWorkstation
 	instanceVariableNames:'screen hasShapeExtension hasShmExtension hasDPSExtension
 		hasMbufExtension hasXVideoExtension hasSaveUnder hasPEXExtension
@@ -7376,7 +7378,7 @@
 initializeDeviceSignals
     super initializeDeviceSignals.
 
-    deviceIOTimeoutErrorSignal := deviceIOErrorSignal newSignalMayProceed:false.
+    deviceIOTimeoutErrorSignal := deviceIOErrorSignal newSignal.
     deviceIOTimeoutErrorSignal nameClass:self message:#deviceIOTimeoutErrorSignal.
 
     ObjectMemory registerErrorInterruptHandler:self class forID:#DisplayError.
@@ -10168,6 +10170,6 @@
 !XWorkstation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/XWorkstation.st,v 1.331 1999-10-19 17:58:44 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/XWorkstation.st,v 1.332 1999-10-26 19:38:54 stefan Exp $'
 ! !
 XWorkstation initialize!