diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-09 10:53:40 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-09 10:53:40 +0800 |
commit | 935897c9a256e0d260adc1dd0dc56b1a5c760cd9 (patch) | |
tree | 5c9aab3145e9c8e60e8a2b18d6d7ef93e8bb1d8f /shell/main.c | |
parent | 5350eebb5ef8c07e69110616ce1662e0e92bea16 (diff) | |
download | gsoc2013-evolution-935897c9a256e0d260adc1dd0dc56b1a5c760cd9.tar.gz gsoc2013-evolution-935897c9a256e0d260adc1dd0dc56b1a5c760cd9.tar.zst gsoc2013-evolution-935897c9a256e0d260adc1dd0dc56b1a5c760cd9.zip |
Fix some bugs in the way the shell widgets get initialized.
svn path=/branches/kill-bonobo/; revision=36279
Diffstat (limited to 'shell/main.c')
-rw-r--r-- | shell/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/main.c b/shell/main.c index 1ed06c611a..4b7c3cce3d 100644 --- a/shell/main.c +++ b/shell/main.c @@ -302,8 +302,7 @@ idle_cb (gchar **uris) client = gconf_client_get_default (); key = "/apps/evolution/shell/view_defaults/component_id"; - requested_view = gconf_client_set_string ( - client, key, initial_view, NULL); + gconf_client_set_string (client, key, initial_view, NULL); g_object_unref (client); } |