From d637055f032462e3d17bdf2e0e051dc4d7836b7f Mon Sep 17 00:00:00 2001
From: "Mirar (Pontus Hagland)" <pike@sort.mirar.org>
Date: Sun, 5 Apr 1998 19:00:33 +0200
Subject: [PATCH] object (Something) fix

Rev: lib/modules/Protocols.pmod/X.pmod/XImage.pmod:1.7
---
 lib/modules/Protocols.pmod/X.pmod/XImage.pmod | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/lib/modules/Protocols.pmod/X.pmod/XImage.pmod b/lib/modules/Protocols.pmod/X.pmod/XImage.pmod
index f35b1e99e2..82e1ff99c5 100644
--- a/lib/modules/Protocols.pmod/X.pmod/XImage.pmod
+++ b/lib/modules/Protocols.pmod/X.pmod/XImage.pmod
@@ -77,12 +77,12 @@ class XImage
 {
   inherit Image_wrapper;
 
-  object (Types.Window) window;
-  object (Types.RootWindow) root; // extends window
-  object (Types.Visual) visual;
-  object (Types.Colormap) colormap;
+  object /*(Types.Window)*/ window;
+  object /*(Types.RootWindow)*/ root; // extends window
+  object /*(Types.Visual)*/ visual;
+  object /*(Types.Colormap)*/ colormap;
   object (Image.colortable) ccol;
-  object (Types.GC) dgc;
+  object /*(Types.GC)*/ dgc;
 
   int best;
 
@@ -309,7 +309,7 @@ class WindowImage
 #endif
   }
 
-  void create(object(Types.Window) w)
+  void create(object/*(Types.Window)*/ w)
   {
     set_drawable(w);
     w->set_event_callback("Expose", exposed); // internal callback...
@@ -321,7 +321,7 @@ class PixmapImage
 {
   inherit XImage;
 
-  void create(object (Types.Pixmap) p)
+  void create(object /*(Types.Pixmap)*/ p)
   {
     set_drawable( p );
   }
-- 
GitLab