diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2012-02-08 13:51:30 +1100 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2012-02-08 12:11:02 +0000 |
commit | 64bbbd69995a3685137bc1f6c28340f471815166 (patch) | |
tree | fe03b80702e291e7c4f40e5035b3be49d51ed7f7 /shell/cc-shell.c | |
parent | 9ad6edadf5a8931143e16cd24e754ea57893dc26 (diff) | |
download | gnome-control-center-64bbbd69995a3685137bc1f6c28340f471815166.tar.gz |
shell: Fix compile warnings
https://bugzilla.gnome.org/show_bug.cgi?id=669627
Diffstat (limited to 'shell/cc-shell.c')
-rw-r--r-- | shell/cc-shell.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/cc-shell.c b/shell/cc-shell.c index 25efcce97..95b6487c1 100644 --- a/shell/cc-shell.c +++ b/shell/cc-shell.c @@ -250,10 +250,9 @@ cc_shell_embed_widget_in_header (CcShell *shell, GtkWidget *widget) g_warning ("Object of type \"%s\" does not implement required virtual" " function \"embed_widget_in_header\",", G_OBJECT_TYPE_NAME (shell)); - return FALSE; } else { - return class->embed_widget_in_header (shell, widget); + class->embed_widget_in_header (shell, widget); } } |