diff options
author | Ryan Lortie <desrt@desrt.ca> | 2010-07-07 22:38:53 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2010-07-07 22:38:53 -0400 |
commit | c3c00a7b4a35756d3e8bfb4e49308fa60cf1d215 (patch) | |
tree | 67a9417493c98b48d40159c55728522b868c0bab /shell | |
parent | a582fd4d75f6b9ed7665125b01d34b630c9ab259 (diff) |
GVariant API adjustment: byte_array -> bytestring
Diffstat (limited to 'shell')
-rw-r--r-- | shell/control-center.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/control-center.c b/shell/control-center.c index 6f5fe189e..7139fda8b 100644 --- a/shell/control-center.c +++ b/shell/control-center.c @@ -43,7 +43,7 @@ application_prepare_action_cb (GApplication *application, GVariant *arguments, if (temp != NULL) { GError *err = NULL; - const gchar *id = g_variant_get_byte_array (temp, NULL); + const gchar *id = g_variant_get_bytestring (temp); if (!cc_shell_set_active_panel_from_id (CC_SHELL (shell), id, &err)) { if (err) |