2007-11-23 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/x11/clutter-stage-x11.c: Chain up the hide and show
	to the parent's implementation.
This commit is contained in:
Emmanuele Bassi 2007-11-23 13:07:04 +00:00
parent 2b447c3b48
commit 7c7b9d0568
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-11-23 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/x11/clutter-stage-x11.c: Chain up the hide and show
to the parent's implementation.
2007-11-23 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-effect.[ch]: Update the effects API to remove

View File

@ -124,6 +124,8 @@ clutter_stage_x11_show (ClutterActor *actor)
XSync (stage_x11->xdpy, FALSE);
XMapWindow (stage_x11->xdpy, stage_x11->xwin);
}
CLUTTER_ACTOR_CLASS (clutter_stage_x11_parent_class)->show (actor);
}
static void
@ -133,6 +135,8 @@ clutter_stage_x11_hide (ClutterActor *actor)
if (stage_x11->xwin)
XUnmapWindow (stage_x11->xdpy, stage_x11->xwin);
CLUTTER_ACTOR_CLASS (clutter_stage_x11_parent_class)->hide (actor);
}
void