Skip to content
Snippets Groups Projects
Commit d637055f authored by Mirar (Pontus Hagland)'s avatar Mirar (Pontus Hagland)
Browse files

object (Something) fix

Rev: lib/modules/Protocols.pmod/X.pmod/XImage.pmod:1.7
parent 8601fd8a
No related branches found
No related tags found
No related merge requests found
...@@ -77,12 +77,12 @@ class XImage ...@@ -77,12 +77,12 @@ class XImage
{ {
inherit Image_wrapper; inherit Image_wrapper;
object (Types.Window) window; object /*(Types.Window)*/ window;
object (Types.RootWindow) root; // extends window object /*(Types.RootWindow)*/ root; // extends window
object (Types.Visual) visual; object /*(Types.Visual)*/ visual;
object (Types.Colormap) colormap; object /*(Types.Colormap)*/ colormap;
object (Image.colortable) ccol; object (Image.colortable) ccol;
object (Types.GC) dgc; object /*(Types.GC)*/ dgc;
int best; int best;
...@@ -309,7 +309,7 @@ class WindowImage ...@@ -309,7 +309,7 @@ class WindowImage
#endif #endif
} }
void create(object(Types.Window) w) void create(object/*(Types.Window)*/ w)
{ {
set_drawable(w); set_drawable(w);
w->set_event_callback("Expose", exposed); // internal callback... w->set_event_callback("Expose", exposed); // internal callback...
...@@ -321,7 +321,7 @@ class PixmapImage ...@@ -321,7 +321,7 @@ class PixmapImage
{ {
inherit XImage; inherit XImage;
void create(object (Types.Pixmap) p) void create(object /*(Types.Pixmap)*/ p)
{ {
set_drawable( p ); set_drawable( p );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment