diff options
author | Antonio Fernandez <antonio.fernandez@aentos.es> | 2012-09-17 23:35:42 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2012-11-14 13:52:49 +0100 |
commit | ec982cfce1b1877eee7105a4e1a45233ea49647d (patch) | |
tree | 99abf69898e1269e311fcfa332bfe267d20c0cf7 /vcl/unx/gtk/window/gloactiongroup.cxx | |
parent | c8367ada13be4f3c0994ad032c09ea475e02a19a (diff) |
Memory management improvements on GLOMenu and GLOActionGroup classes.
Change-Id: I1c4fb268a08c2b343ac99ee9294f536c1444f707
Diffstat (limited to 'vcl/unx/gtk/window/gloactiongroup.cxx')
-rw-r--r-- | vcl/unx/gtk/window/gloactiongroup.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/gtk/window/gloactiongroup.cxx b/vcl/unx/gtk/window/gloactiongroup.cxx index 12670ced12a1..d0837038c94f 100644 --- a/vcl/unx/gtk/window/gloactiongroup.cxx +++ b/vcl/unx/gtk/window/gloactiongroup.cxx @@ -167,10 +167,10 @@ g_lo_action_group_query_action (GActionGroup *group, *state_type = action->state_type; if (state_hint) - *state_hint = (action->state_hint) ? g_variant_ref(action->state_hint) : NULL; + *state_hint = (action->state_hint) ? g_variant_ref (action->state_hint) : NULL; if (state) - *state = (action->state) ? g_variant_ref(action->state) : NULL; + *state = (action->state) ? g_variant_ref (action->state) : NULL; return TRUE; } |