aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/calendar-weather/calendar-weather.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@novell.com>2005-01-11 07:04:53 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2005-01-11 07:04:53 +0800
commit63dea9ffd79289db5e4da0ced1b2cfd828a11bb3 (patch)
tree939a587d8fcc802049bc85370a220545ea3f58b5 /plugins/calendar-weather/calendar-weather.c
parentac271b80ee92fe4fcad46847aa93fc9a80a26a76 (diff)
downloadgsoc2013-evolution-63dea9ffd79289db5e4da0ced1b2cfd828a11bb3.tar
gsoc2013-evolution-63dea9ffd79289db5e4da0ced1b2cfd828a11bb3.tar.gz
gsoc2013-evolution-63dea9ffd79289db5e4da0ced1b2cfd828a11bb3.tar.bz2
gsoc2013-evolution-63dea9ffd79289db5e4da0ced1b2cfd828a11bb3.tar.lz
gsoc2013-evolution-63dea9ffd79289db5e4da0ced1b2cfd828a11bb3.tar.xz
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
Diffstat (limited to 'plugins/calendar-weather/calendar-weather.c')
-rw-r--r--plugins/calendar-weather/calendar-weather.c10
1 files changed, 5 insertions, 5 deletions
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);