aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2004-12-22 04:57:08 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-12-22 04:57:08 +0800
commitcc3ce4c662c230d8d2e66282881003d4421eb486 (patch)
treee4942a8438c8490edc7d810fdc98bf1888fbf126
parent9aaf62bf4bcf15fa38fbb625adc35d3dbc4d2240 (diff)
downloadgsoc2013-evolution-cc3ce4c662c230d8d2e66282881003d4421eb486.tar
gsoc2013-evolution-cc3ce4c662c230d8d2e66282881003d4421eb486.tar.gz
gsoc2013-evolution-cc3ce4c662c230d8d2e66282881003d4421eb486.tar.bz2
gsoc2013-evolution-cc3ce4c662c230d8d2e66282881003d4421eb486.tar.lz
gsoc2013-evolution-cc3ce4c662c230d8d2e66282881003d4421eb486.tar.xz
gsoc2013-evolution-cc3ce4c662c230d8d2e66282881003d4421eb486.tar.zst
gsoc2013-evolution-cc3ce4c662c230d8d2e66282881003d4421eb486.zip
Fixes #30992
2004-12-21 JP Rosevear <jpr@novell.com> Fixes #30992 * e-config.c (e_config_create_window): use cancel rather than close button svn path=/trunk/; revision=28171
-rw-r--r--e-util/ChangeLog7
-rw-r--r--e-util/e-config.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index da69ed5fcf..157e4debc6 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,5 +1,12 @@
2004-12-21 JP Rosevear <jpr@novell.com>
+ Fixes #30992
+
+ * e-config.c (e_config_create_window): use cancel rather than
+ close button
+
+2004-12-21 JP Rosevear <jpr@novell.com>
+
* e-account.c: convert to G_DEFINE_TYPE
* e-account-list.c: ditto
diff --git a/e-util/e-config.c b/e-util/e-config.c
index 6e03c19b2f..16c5219b42 100644
--- a/e-util/e-config.c
+++ b/e-util/e-config.c
@@ -883,7 +883,7 @@ e_config_create_window(EConfig *emp, struct _GtkWindow *parent, const char *titl
if (emp->type == E_CONFIG_BOOK) {
w = gtk_dialog_new_with_buttons(title, parent, GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_STOCK_CLOSE, GTK_RESPONSE_CANCEL,
+ GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_OK, GTK_RESPONSE_OK,
NULL);
g_signal_connect(w, "response", G_CALLBACK(ec_dialog_response), emp);