diff options
author | Rodrigo Moya <rodrigo@novell.com> | 2005-01-11 07:04:53 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2005-01-11 07:04:53 +0800 |
commit | 63dea9ffd79289db5e4da0ced1b2cfd828a11bb3 (patch) | |
tree | 939a587d8fcc802049bc85370a220545ea3f58b5 | |
parent | ac271b80ee92fe4fcad46847aa93fc9a80a26a76 (diff) | |
download | gsoc2013-evolution-63dea9ffd79289db5e4da0ced1b2cfd828a11bb3.tar.gz gsoc2013-evolution-63dea9ffd79289db5e4da0ced1b2cfd828a11bb3.tar.zst gsoc2013-evolution-63dea9ffd79289db5e4da0ced1b2cfd828a11bb3.zip |
use HIG-compliant button order.
2005-01-10 Rodrigo Moya <rodrigo@novell.com>
* calendar-weather.c (create_source_selected): use HIG-compliant
button order.
svn path=/trunk/; revision=28340
-rw-r--r-- | plugins/calendar-weather/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/calendar-weather/calendar-weather.c | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/plugins/calendar-weather/ChangeLog b/plugins/calendar-weather/ChangeLog index ac06c54d4d..bc2073c6d1 100644 --- a/plugins/calendar-weather/ChangeLog +++ b/plugins/calendar-weather/ChangeLog @@ -1,3 +1,8 @@ +2005-01-10 Rodrigo Moya <rodrigo@novell.com> + + * calendar-weather.c (create_source_selected): use HIG-compliant + button order. + 2005-01-07 Rodrigo Moya <rodrigo@novell.com> * Makefile.am: define EDS's datadir, needed to get to the diff --git a/plugins/calendar-weather/calendar-weather.c b/plugins/calendar-weather/calendar-weather.c index 9885193fe5..6579b1f470 100644 --- a/plugins/calendar-weather/calendar-weather.c +++ b/plugins/calendar-weather/calendar-weather.c @@ -266,11 +266,11 @@ create_source_selector (ESource *source) return NULL; dialog = gtk_dialog_new_with_buttons ( - _("Select a location"), - NULL, GTK_DIALOG_MODAL, - GTK_STOCK_OK, GTK_RESPONSE_OK, - GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, - NULL); + _("Select a location"), + NULL, GTK_DIALOG_MODAL, + GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, + GTK_STOCK_OK, GTK_RESPONSE_OK, + NULL); gtk_container_set_border_width (GTK_CONTAINER (dialog), 6); scrolledwindow = gtk_scrolled_window_new (NULL, NULL); |