summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2008-05-29 13:19:35 +0000
committerBastien Nocera <hadess@src.gnome.org>2008-05-29 13:19:35 +0000
commitf6b476584c44a5efc3ae34d1ca5a8de0aff943f7 (patch)
treede99774ecca8d264c99fbc5f5600ed2b315c1468
parented6da74aa721f9a5b4a8bf31b424097d36445c53 (diff)
downloadtotem-f6b476584c44a5efc3ae34d1ca5a8de0aff943f7.tar.gz
Remove unused, and unneeded GConf setting for "sidebar_shown", spotted by
2008-05-29 Bastien Nocera <hadess@hadess.net> * src/totem-sidebar.c (totem_sidebar_toggle): Remove unused, and unneeded GConf setting for "sidebar_shown", spotted by azurief on IRC svn path=/trunk/; revision=5440
-rw-r--r--ChangeLog5
-rw-r--r--src/totem-sidebar.c4
2 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 4efba9acd..e27d86020 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-05-29 Bastien Nocera <hadess@hadess.net>
+
+ * src/totem-sidebar.c (totem_sidebar_toggle): Remove unused, and
+ unneeded GConf setting for "sidebar_shown", spotted by azurief on IRC
+
2008-05-28 Bastien Nocera <hadess@hadess.net>
* configure.in: patch from Richard Hult to fix compilation when X11
diff --git a/src/totem-sidebar.c b/src/totem-sidebar.c
index 4d214b8a2..41ba5789d 100644
--- a/src/totem-sidebar.c
+++ b/src/totem-sidebar.c
@@ -73,10 +73,6 @@ totem_sidebar_toggle (Totem *totem, gboolean state)
gtk_toggle_action_set_active (GTK_TOGGLE_ACTION (action), state);
totem_signal_unblock_by_data (G_OBJECT (action), totem);
- gconf_client_set_bool (totem->gc,
- GCONF_PREFIX"/sidebar_shown",
- state,
- NULL);
totem->sidebar_shown = state;
cb_resize(totem);
}