Fix compilers warnings when debugging is disabled
This commit is contained in:
parent
75702fde4d
commit
03296e30e7
4 changed files with 17 additions and 20 deletions
|
@ -1781,7 +1781,6 @@ apply_layout_properties (ClutterScript *script,
|
||||||
{
|
{
|
||||||
ClutterScriptable *scriptable = NULL;
|
ClutterScriptable *scriptable = NULL;
|
||||||
ClutterScriptableIface *iface = NULL;
|
ClutterScriptableIface *iface = NULL;
|
||||||
gboolean set_custom_property = FALSE;
|
|
||||||
gboolean parse_custom_node = FALSE;
|
gboolean parse_custom_node = FALSE;
|
||||||
GList *l, *unresolved, *properties;
|
GList *l, *unresolved, *properties;
|
||||||
ClutterLayoutManager *manager;
|
ClutterLayoutManager *manager;
|
||||||
|
@ -1806,7 +1805,6 @@ apply_layout_properties (ClutterScript *script,
|
||||||
iface = CLUTTER_SCRIPTABLE_GET_IFACE (scriptable);
|
iface = CLUTTER_SCRIPTABLE_GET_IFACE (scriptable);
|
||||||
|
|
||||||
parse_custom_node = iface->parse_custom_node != NULL ? TRUE : FALSE;
|
parse_custom_node = iface->parse_custom_node != NULL ? TRUE : FALSE;
|
||||||
set_custom_property = iface->set_custom_property != NULL ? TRUE : FALSE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
properties = oinfo->properties;
|
properties = oinfo->properties;
|
||||||
|
@ -1859,7 +1857,7 @@ apply_layout_properties (ClutterScript *script,
|
||||||
CLUTTER_NOTE (SCRIPT,
|
CLUTTER_NOTE (SCRIPT,
|
||||||
"Setting %s layout property '%s' (type:%s) to "
|
"Setting %s layout property '%s' (type:%s) to "
|
||||||
"object '%s' (id:%s)",
|
"object '%s' (id:%s)",
|
||||||
set_custom_property ? "custom" : "regular",
|
iface->set_custom_property != NULL ? "custom" : "regular",
|
||||||
name,
|
name,
|
||||||
g_type_name (G_VALUE_TYPE (&value)),
|
g_type_name (G_VALUE_TYPE (&value)),
|
||||||
g_type_name (oinfo->gtype),
|
g_type_name (oinfo->gtype),
|
||||||
|
@ -1887,7 +1885,6 @@ apply_child_properties (ClutterScript *script,
|
||||||
{
|
{
|
||||||
ClutterScriptable *scriptable = NULL;
|
ClutterScriptable *scriptable = NULL;
|
||||||
ClutterScriptableIface *iface = NULL;
|
ClutterScriptableIface *iface = NULL;
|
||||||
gboolean set_custom_property = FALSE;
|
|
||||||
gboolean parse_custom_node = FALSE;
|
gboolean parse_custom_node = FALSE;
|
||||||
GList *l, *unresolved, *properties;
|
GList *l, *unresolved, *properties;
|
||||||
GObjectClass *klass;
|
GObjectClass *klass;
|
||||||
|
@ -1906,7 +1903,6 @@ apply_child_properties (ClutterScript *script,
|
||||||
iface = CLUTTER_SCRIPTABLE_GET_IFACE (scriptable);
|
iface = CLUTTER_SCRIPTABLE_GET_IFACE (scriptable);
|
||||||
|
|
||||||
parse_custom_node = iface->parse_custom_node != NULL ? TRUE : FALSE;
|
parse_custom_node = iface->parse_custom_node != NULL ? TRUE : FALSE;
|
||||||
set_custom_property = iface->set_custom_property != NULL ? TRUE : FALSE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
properties = oinfo->properties;
|
properties = oinfo->properties;
|
||||||
|
@ -1960,7 +1956,7 @@ apply_child_properties (ClutterScript *script,
|
||||||
CLUTTER_NOTE (SCRIPT,
|
CLUTTER_NOTE (SCRIPT,
|
||||||
"Setting %s child property '%s' (type:%s) to "
|
"Setting %s child property '%s' (type:%s) to "
|
||||||
"object '%s' (id:%s)",
|
"object '%s' (id:%s)",
|
||||||
set_custom_property ? "custom" : "regular",
|
iface->set_custom_property != NULL ? "custom" : "regular",
|
||||||
name,
|
name,
|
||||||
g_type_name (G_VALUE_TYPE (&value)),
|
g_type_name (G_VALUE_TYPE (&value)),
|
||||||
g_type_name (oinfo->gtype),
|
g_type_name (oinfo->gtype),
|
||||||
|
|
|
@ -368,11 +368,6 @@ clutter_stage_allocate (ClutterActor *self,
|
||||||
float new_width, new_height;
|
float new_width, new_height;
|
||||||
float width, height;
|
float width, height;
|
||||||
cairo_rectangle_int_t window_size;
|
cairo_rectangle_int_t window_size;
|
||||||
gboolean origin_changed;
|
|
||||||
|
|
||||||
origin_changed = (flags & CLUTTER_ABSOLUTE_ORIGIN_CHANGED)
|
|
||||||
? TRUE
|
|
||||||
: FALSE;
|
|
||||||
|
|
||||||
if (priv->impl == NULL)
|
if (priv->impl == NULL)
|
||||||
return;
|
return;
|
||||||
|
@ -395,9 +390,11 @@ clutter_stage_allocate (ClutterActor *self,
|
||||||
if (!clutter_feature_available (CLUTTER_FEATURE_STAGE_STATIC))
|
if (!clutter_feature_available (CLUTTER_FEATURE_STAGE_STATIC))
|
||||||
{
|
{
|
||||||
CLUTTER_NOTE (LAYOUT,
|
CLUTTER_NOTE (LAYOUT,
|
||||||
"Following allocation to %.2fx%.2f (origin %s)",
|
"Following allocation to %.2fx%.2f (absolute origin %s)",
|
||||||
width, height,
|
width, height,
|
||||||
origin_changed ? "changed" : "not changed");
|
(flags & CLUTTER_ABSOLUTE_ORIGIN_CHANGED)
|
||||||
|
? "changed"
|
||||||
|
: "not changed");
|
||||||
|
|
||||||
clutter_actor_set_allocation (self, box,
|
clutter_actor_set_allocation (self, box,
|
||||||
flags | CLUTTER_DELEGATE_LAYOUT);
|
flags | CLUTTER_DELEGATE_LAYOUT);
|
||||||
|
@ -451,11 +448,13 @@ clutter_stage_allocate (ClutterActor *self,
|
||||||
|
|
||||||
CLUTTER_NOTE (LAYOUT,
|
CLUTTER_NOTE (LAYOUT,
|
||||||
"Overriding original allocation of %dx%d "
|
"Overriding original allocation of %dx%d "
|
||||||
"with %.2fx%.2f (origin %s)",
|
"with %.2fx%.2f (absolute origin %s)",
|
||||||
width, height,
|
width, height,
|
||||||
(int) (override.x2),
|
(int) (override.x2),
|
||||||
(int) (override.y2),
|
(int) (override.y2),
|
||||||
origin_changed ? "changed" : "not changed");
|
(flags & CLUTTER_ABSOLUTE_ORIGIN_CHANGED)
|
||||||
|
? "changed"
|
||||||
|
: "not changed");
|
||||||
|
|
||||||
/* and store the overridden allocation */
|
/* and store the overridden allocation */
|
||||||
clutter_actor_set_allocation (self, &override,
|
clutter_actor_set_allocation (self, &override,
|
||||||
|
|
|
@ -773,7 +773,6 @@ clutter_backend_x11_create_stage (ClutterBackend *backend,
|
||||||
ClutterStage *wrapper,
|
ClutterStage *wrapper,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
ClutterBackendX11 *backend_x11 = CLUTTER_BACKEND_X11 (backend);
|
|
||||||
ClutterEventTranslator *translator;
|
ClutterEventTranslator *translator;
|
||||||
ClutterStageWindow *stage;
|
ClutterStageWindow *stage;
|
||||||
|
|
||||||
|
@ -787,9 +786,9 @@ clutter_backend_x11_create_stage (ClutterBackend *backend,
|
||||||
_clutter_backend_add_event_translator (backend, translator);
|
_clutter_backend_add_event_translator (backend, translator);
|
||||||
|
|
||||||
CLUTTER_NOTE (MISC, "X11 stage created (display:%p, screen:%d, root:%u)",
|
CLUTTER_NOTE (MISC, "X11 stage created (display:%p, screen:%d, root:%u)",
|
||||||
backend_x11->xdpy,
|
CLUTTER_BACKEND_X11 (backend)->xdpy,
|
||||||
backend_x11->xscreen_num,
|
CLUTTER_BACKEND_X11 (backend)->xscreen_num,
|
||||||
(unsigned int) backend_x11->xwin_root);
|
(unsigned int) CLUTTER_BACKEND_X11 (backend)->xwin_root);
|
||||||
|
|
||||||
return stage;
|
return stage;
|
||||||
}
|
}
|
||||||
|
|
|
@ -926,12 +926,14 @@ handle_wm_protocols_event (ClutterBackendX11 *backend_x11,
|
||||||
ClutterStageX11 *stage_x11,
|
ClutterStageX11 *stage_x11,
|
||||||
XEvent *xevent)
|
XEvent *xevent)
|
||||||
{
|
{
|
||||||
ClutterStageCogl *stage_cogl = CLUTTER_STAGE_COGL (stage_x11);
|
|
||||||
Atom atom = (Atom) xevent->xclient.data.l[0];
|
Atom atom = (Atom) xevent->xclient.data.l[0];
|
||||||
|
|
||||||
if (atom == backend_x11->atom_WM_DELETE_WINDOW &&
|
if (atom == backend_x11->atom_WM_DELETE_WINDOW &&
|
||||||
xevent->xany.window == stage_x11->xwin)
|
xevent->xany.window == stage_x11->xwin)
|
||||||
{
|
{
|
||||||
|
#ifdef CLUTTER_ENABLE_DEBUG
|
||||||
|
ClutterStageCogl *stage_cogl = CLUTTER_STAGE_COGL (stage_x11);
|
||||||
|
|
||||||
/* the WM_DELETE_WINDOW is a request: we do not destroy
|
/* the WM_DELETE_WINDOW is a request: we do not destroy
|
||||||
* the window right away, as it might contain vital data;
|
* the window right away, as it might contain vital data;
|
||||||
* we relay the event to the application and we let it
|
* we relay the event to the application and we let it
|
||||||
|
@ -941,6 +943,7 @@ handle_wm_protocols_event (ClutterBackendX11 *backend_x11,
|
||||||
_clutter_actor_get_debug_name (CLUTTER_ACTOR (stage_cogl->wrapper)),
|
_clutter_actor_get_debug_name (CLUTTER_ACTOR (stage_cogl->wrapper)),
|
||||||
stage_cogl->wrapper,
|
stage_cogl->wrapper,
|
||||||
(unsigned int) stage_x11->xwin);
|
(unsigned int) stage_x11->xwin);
|
||||||
|
#endif /* CLUTTER_ENABLE_DEBUG */
|
||||||
|
|
||||||
set_user_time (backend_x11, stage_x11, xevent->xclient.data.l[1]);
|
set_user_time (backend_x11, stage_x11, xevent->xclient.data.l[1]);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue