diff options
author | Ted Gould <ted@gould.cx> | 2010-03-03 14:51:57 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-03-03 14:51:57 -0600 |
commit | 3f35021350143255280fe30b1f38c46219c72f6b (patch) | |
tree | 256f374212bf5058c8e8c959fdf9c324d9d2261e | |
parent | 84c4324d547a81969e0de563732eb923c83e7ea6 (diff) | |
download | ayatana-indicator-session-3f35021350143255280fe30b1f38c46219c72f6b.tar.gz ayatana-indicator-session-3f35021350143255280fe30b1f38c46219c72f6b.tar.bz2 ayatana-indicator-session-3f35021350143255280fe30b1f38c46219c72f6b.zip |
Flipping button order
-rw-r--r-- | src/gtk-dialog/dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtk-dialog/dialog.c b/src/gtk-dialog/dialog.c index 96ebf21..18f345f 100644 --- a/src/gtk-dialog/dialog.c +++ b/src/gtk-dialog/dialog.c @@ -114,8 +114,8 @@ logout_dialog_new (LogoutDialogType type) NULL)); gtk_dialog_add_buttons(GTK_DIALOG(dialog), - _(button_strings[type]), GTK_RESPONSE_OK, _("Cancel"), GTK_RESPONSE_CANCEL, + _(button_strings[type]), GTK_RESPONSE_OK, NULL); return dialog; |