diff options
author | JP Rosevear <jpr@novell.com> | 2004-12-22 04:57:08 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-12-22 04:57:08 +0800 |
commit | cc3ce4c662c230d8d2e66282881003d4421eb486 (patch) | |
tree | e4942a8438c8490edc7d810fdc98bf1888fbf126 /e-util | |
parent | 9aaf62bf4bcf15fa38fbb625adc35d3dbc4d2240 (diff) | |
download | gsoc2013-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
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 7 | ||||
-rw-r--r-- | e-util/e-config.c | 2 |
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); |