class: SynchronousWindowSensor
authorClaus Gittinger <cg@exept.de>
Fri, 28 Feb 2014 14:27:02 +0100
changeset 6287 4f4be4afb377
parent 6286 3591f0aee115
child 6288 58d0f3fbe12d
class: SynchronousWindowSensor changed: #initialize never forget super initialize!
SynchronousWindowSensor.st
--- a/SynchronousWindowSensor.st	Fri Feb 28 13:58:54 2014 +0100
+++ b/SynchronousWindowSensor.st	Fri Feb 28 14:27:02 2014 +0100
@@ -168,6 +168,7 @@
 initialize
     "initialize the event queues to empty"
 
+    super initialize.
 
     gotExpose := IdentitySet new.
     catchExpose := IdentitySet new.
@@ -236,6 +237,6 @@
 !SynchronousWindowSensor class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/SynchronousWindowSensor.st,v 1.29 2013-03-08 10:06:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/SynchronousWindowSensor.st,v 1.30 2014-02-28 13:27:02 cg Exp $'
 ! !