DeviceGraphicsContext.st
changeset 2572 447398073628
parent 2360 c7ca5d55d8ce
child 2680 78abc6171873
--- a/DeviceGraphicsContext.st	Thu Apr 22 19:41:53 1999 +0200
+++ b/DeviceGraphicsContext.st	Fri Apr 23 14:42:16 1999 +0200
@@ -3467,7 +3467,7 @@
     "Modified: 4.6.1996 / 17:58:49 / cg"
 ! !
 
-!DeviceGraphicsContext methodsFor:'initialization'!
+!DeviceGraphicsContext methodsFor:'initialize / release'!
 
 close
     "same as destroy - for ST-80 compatibility"
@@ -3505,6 +3505,13 @@
     "Modified: 2.4.1997 / 19:37:53 / cg"
 !
 
+disposed
+    "some Drawable has been collected 
+     - must release operating system resources"
+
+    ^ self subclassResponsibility
+!
+
 initGC
     "since we do not need a gc-object for the drawable until something is
      really drawn, none is created.
@@ -3676,15 +3683,6 @@
     "Modified: 2.4.1997 / 19:36:30 / cg"
 ! !
 
-!DeviceGraphicsContext methodsFor:'instance release'!
-
-disposed
-    "some Drawable has been collected 
-     - must release operating system resources"
-
-    ^ self subclassResponsibility
-! !
-
 !DeviceGraphicsContext methodsFor:'private'!
 
 setDevice:aDevice id:aDrawbleId gcId:aGCId
@@ -3833,6 +3831,6 @@
 !DeviceGraphicsContext class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/DeviceGraphicsContext.st,v 1.65 1998-09-22 14:34:05 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/DeviceGraphicsContext.st,v 1.66 1999-04-23 12:42:04 cg Exp $'
 ! !
 DeviceGraphicsContext initialize!