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
This commit is contained in:
Rodrigo Moya
2005-01-10 23:04:53 +00:00
committed by Rodrigo Moya
parent ac271b80ee
commit 63dea9ffd7
2 changed files with 10 additions and 5 deletions

View File

@ -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

View File

@ -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);