diff options
author | Kjartan Maraas <kmaraas@src.gnome.org> | 2006-01-28 00:34:03 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2006-01-28 00:34:03 +0800 |
commit | 45f799eb8632142a31d1dbf3572c2672bb36c747 (patch) | |
tree | 852523494c449077b4e59e0812bd7277d6892a4f /plugins/plugin-manager/plugin-manager.c | |
parent | 6a557ef8fd8fb37af345b0f092f8419572bee1dd (diff) | |
download | gsoc2013-evolution-45f799eb8632142a31d1dbf3572c2672bb36c747.tar gsoc2013-evolution-45f799eb8632142a31d1dbf3572c2672bb36c747.tar.gz gsoc2013-evolution-45f799eb8632142a31d1dbf3572c2672bb36c747.tar.bz2 gsoc2013-evolution-45f799eb8632142a31d1dbf3572c2672bb36c747.tar.lz gsoc2013-evolution-45f799eb8632142a31d1dbf3572c2672bb36c747.tar.xz gsoc2013-evolution-45f799eb8632142a31d1dbf3572c2672bb36c747.tar.zst gsoc2013-evolution-45f799eb8632142a31d1dbf3572c2672bb36c747.zip |
Make this place a bit more quiet
svn path=/trunk/; revision=31328
Diffstat (limited to 'plugins/plugin-manager/plugin-manager.c')
-rw-r--r-- | plugins/plugin-manager/plugin-manager.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/plugin-manager/plugin-manager.c b/plugins/plugin-manager/plugin-manager.c index 7ee0c90c0c..fbc1106af8 100644 --- a/plugins/plugin-manager/plugin-manager.c +++ b/plugins/plugin-manager/plugin-manager.c @@ -132,13 +132,11 @@ eppm_selection_changed(GtkTreeSelection *selection, Manager *m) static void eppm_enable_toggled(GtkCellRendererToggle *renderer, char *arg1, Manager *m) { - GtkTreeSelection *selection; GtkTreePath *path; GtkTreeIter iter; EPlugin *plugin; path = gtk_tree_path_new_from_string(arg1); - selection = gtk_tree_view_get_selection(m->tree); if (gtk_tree_model_get_iter((GtkTreeModel *)m->model, &iter, path)) { gtk_tree_model_get((GtkTreeModel *)m->model, &iter, 2, &plugin, -1); e_plugin_enable(plugin, !plugin->enabled); |