aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);