aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSankar P <psankar@novell.com>2007-11-19 21:00:15 +0800
committerSankarasivasubramanian Pasupathilingam <psankar@src.gnome.org>2007-11-19 21:00:15 +0800
commit502751f24093c81294847cf89bd58380cf0eb829 (patch)
tree340eea6c349c038dcfc59cf595a0bbcc588219e5
parentaa3aab83049c1ff8464de6c1a2d7b7b4139e2200 (diff)
downloadgsoc2013-evolution-502751f24093c81294847cf89bd58380cf0eb829.tar
gsoc2013-evolution-502751f24093c81294847cf89bd58380cf0eb829.tar.gz
gsoc2013-evolution-502751f24093c81294847cf89bd58380cf0eb829.tar.bz2
gsoc2013-evolution-502751f24093c81294847cf89bd58380cf0eb829.tar.lz
gsoc2013-evolution-502751f24093c81294847cf89bd58380cf0eb829.tar.xz
gsoc2013-evolution-502751f24093c81294847cf89bd58380cf0eb829.tar.zst
gsoc2013-evolution-502751f24093c81294847cf89bd58380cf0eb829.zip
** Fix for bug #498173
2007-11-19 Sankar P <psankar@novell.com> ** Fix for bug #498173 * plugin-manager.c: (eppm_response): e_plugin_configure should be called only when user clicks on Configure button. svn path=/trunk/; revision=34553
-rw-r--r--plugins/plugin-manager/ChangeLog8
-rw-r--r--plugins/plugin-manager/plugin-manager.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/plugins/plugin-manager/ChangeLog b/plugins/plugin-manager/ChangeLog
index 40111f51cd..108affe08c 100644
--- a/plugins/plugin-manager/ChangeLog
+++ b/plugins/plugin-manager/ChangeLog
@@ -1,3 +1,11 @@
+2007-11-19 Sankar P <psankar@novell.com>
+
+ ** Fix for bug #498173
+
+ * plugin-manager.c: (eppm_response):
+ e_plugin_configure should be called only
+ when user clicks on Configure button.
+
2007-10-26 Kjartan Maraas <kmaraas@gnome.org>
* plugin-manager.c: (org_gnome_plugin_manager_manage):
diff --git a/plugins/plugin-manager/plugin-manager.c b/plugins/plugin-manager/plugin-manager.c
index 4352254bf7..4bd4694fa3 100644
--- a/plugins/plugin-manager/plugin-manager.c
+++ b/plugins/plugin-manager/plugin-manager.c
@@ -190,7 +190,7 @@ eppm_response(GtkDialog *w, int button, Manager *m)
if (button == GTK_RESPONSE_CLOSE) {
gtk_widget_destroy((GtkWidget*)w);
dialog = NULL;
- } else {
+ } else if (button == RESPONSE_CONFIGURE) {
GtkTreeSelection *selection = NULL;
GtkTreeModel *model = NULL;
GtkTreeIter iter;