diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-07-14 16:08:40 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-07-14 16:08:40 +0800 |
commit | 0a8ab81a9e060a5f6dbbb64ba9bc93b57bd1fc12 (patch) | |
tree | 351e9d67c118edbe1a1c5591442635021cc85900 /libempathy-gtk | |
parent | b6c6f58ed9d8ec3fa154e7bf76d952015be74901 (diff) | |
download | gsoc2013-empathy-0a8ab81a9e060a5f6dbbb64ba9bc93b57bd1fc12.tar gsoc2013-empathy-0a8ab81a9e060a5f6dbbb64ba9bc93b57bd1fc12.tar.gz gsoc2013-empathy-0a8ab81a9e060a5f6dbbb64ba9bc93b57bd1fc12.tar.bz2 gsoc2013-empathy-0a8ab81a9e060a5f6dbbb64ba9bc93b57bd1fc12.tar.lz gsoc2013-empathy-0a8ab81a9e060a5f6dbbb64ba9bc93b57bd1fc12.tar.xz gsoc2013-empathy-0a8ab81a9e060a5f6dbbb64ba9bc93b57bd1fc12.tar.zst gsoc2013-empathy-0a8ab81a9e060a5f6dbbb64ba9bc93b57bd1fc12.zip |
Reverse order of buttons on the dialog box to delete a contact (or a group). Fixes bug #542196 (Gaƫtan Podevijn).
svn path=/trunk/; revision=1225
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-contact-list-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c index 50236eb00..760ad6d52 100644 --- a/libempathy-gtk/empathy-contact-list-view.c +++ b/libempathy-gtk/empathy-contact-list-view.c @@ -1200,8 +1200,8 @@ contact_list_view_remove_dialog_show (GtkWindow *parent, dialog = gtk_dialog_new_with_buttons (window_title, parent, GTK_DIALOG_MODAL, + GTK_STOCK_CANCEL, GTK_RESPONSE_NO, GTK_STOCK_DELETE, GTK_RESPONSE_YES, - GTK_STOCK_CANCEL, GTK_RESPONSE_NO, NULL); gtk_dialog_set_has_separator (GTK_DIALOG(dialog), FALSE); |