2007-07-31 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-stage.[ch]: Fix clutter_stage_set_user_resizable()
	name, and add a getter for the property.

	* clutter/glx/clutter-stage-glx.c: Use the accessor, not
	g_object_get() to retrieve the value of the resizable property.
This commit is contained in:
Emmanuele Bassi
2007-07-31 17:01:52 +00:00
parent 6145261040
commit 4170d7cc43
5 changed files with 57 additions and 27 deletions

View File

@ -171,12 +171,12 @@ GdkPixbuf * clutter_stage_snapshot (ClutterStage *stage,
gboolean clutter_stage_event (ClutterStage *stage,
ClutterEvent *event);
void clutter_stage_set_title (ClutterStage *stage,
const gchar *title);
G_CONST_RETURN gchar *clutter_stage_get_title (ClutterStage *stage);
void clutter_stage_set_user_resizeable (ClutterStage *stage,
gboolean value);
void clutter_stage_set_title (ClutterStage *stage,
const gchar *title);
G_CONST_RETURN gchar *clutter_stage_get_title (ClutterStage *stage);
void clutter_stage_set_user_resizable (ClutterStage *stage,
gboolean resizable);
gboolean clutter_stage_get_user_resizable (ClutterStage *stage);
G_END_DECLS