[Xfce4-commits] [thunar-plugins/thunar-vcs-plugin] 06/09: Drop gtk_dialog_set_alternative_button_order

noreply at xfce.org noreply at xfce.org
Sat Jun 2 05:09:40 CEST 2018


This is an automated email from the git hooks/post-receive script.

a   n   d   r   e       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository thunar-plugins/thunar-vcs-plugin.

commit 4b23fbcd01fe3a24be32d4785464aef257372a22
Author: Andre Miranda <andreldm at xfce.org>
Date:   Fri Jun 1 23:06:55 2018 -0300

    Drop gtk_dialog_set_alternative_button_order
    
    It's deprecated and only makes sense when targeting
    platforms that order buttons differently, i.e. Windows.
---
 tvp-git-helper/tgh-branch-dialog.c         | 1 -
 tvp-git-helper/tgh-clean-dialog.c          | 1 -
 tvp-git-helper/tgh-file-selection-dialog.c | 1 -
 tvp-git-helper/tgh-stash-dialog.c          | 1 -
 tvp-git-helper/tgh-transfer-dialog.c       | 1 -
 tvp-svn-helper/tsh-file-dialog.c           | 1 -
 tvp-svn-helper/tsh-file-selection-dialog.c | 1 -
 tvp-svn-helper/tsh-lock-dialog.c           | 1 -
 tvp-svn-helper/tsh-log-message-dialog.c    | 1 -
 tvp-svn-helper/tsh-login-dialog.c          | 1 -
 tvp-svn-helper/tsh-relocate-dialog.c       | 1 -
 tvp-svn-helper/tsh-transfer-dialog.c       | 1 -
 tvp-svn-helper/tsh-trust-dialog.c          | 1 -
 13 files changed, 13 deletions(-)

diff --git a/tvp-git-helper/tgh-branch-dialog.c b/tvp-git-helper/tgh-branch-dialog.c
index 36bee17..b94325d 100644
--- a/tvp-git-helper/tgh-branch-dialog.c
+++ b/tvp-git-helper/tgh-branch-dialog.c
@@ -247,7 +247,6 @@ create_clicked (GtkButton *button, gpointer user_data)
   TghBranchDialog *dialog = TGH_BRANCH_DIALOG (user_data);
 
   name_dialog = gtk_dialog_new_with_buttons (NULL, GTK_WINDOW (dialog), GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_MODAL, _("_Cancel"), GTK_RESPONSE_CANCEL, _("_New"), GTK_RESPONSE_ACCEPT, NULL);
-  gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_ACCEPT, GTK_RESPONSE_CANCEL, -1);
   gtk_window_set_resizable (GTK_WINDOW (name_dialog), FALSE);
   gtk_window_set_skip_taskbar_hint (GTK_WINDOW (name_dialog), TRUE);
 
diff --git a/tvp-git-helper/tgh-clean-dialog.c b/tvp-git-helper/tgh-clean-dialog.c
index 642520e..45eacf4 100644
--- a/tvp-git-helper/tgh-clean-dialog.c
+++ b/tvp-git-helper/tgh-clean-dialog.c
@@ -98,7 +98,6 @@ tgh_clean_dialog_init (TghCleanDialog *dialog)
       _("_Cancel"), GTK_RESPONSE_CANCEL,
       _("_OK"), GTK_RESPONSE_OK,
       NULL);
-  gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
   gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
   gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
diff --git a/tvp-git-helper/tgh-file-selection-dialog.c b/tvp-git-helper/tgh-file-selection-dialog.c
index c7c6588..f5c791c 100644
--- a/tvp-git-helper/tgh-file-selection-dialog.c
+++ b/tvp-git-helper/tgh-file-selection-dialog.c
@@ -123,7 +123,6 @@ tgh_file_selection_dialog_init (TghFileSelectionDialog *dialog)
                           _("_Cancel"), GTK_RESPONSE_CANCEL,
                           _("_OK"), GTK_RESPONSE_OK,
                           NULL);
-  gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
   gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
   gtk_window_set_default_size (GTK_WINDOW (dialog), 300, 200);
diff --git a/tvp-git-helper/tgh-stash-dialog.c b/tvp-git-helper/tgh-stash-dialog.c
index c9de22c..d8d1ca9 100644
--- a/tvp-git-helper/tgh-stash-dialog.c
+++ b/tvp-git-helper/tgh-stash-dialog.c
@@ -376,7 +376,6 @@ save_clicked (GtkButton *button, gpointer user_data)
   gint result;
 
   name_dialog = gtk_dialog_new_with_buttons (NULL, GTK_WINDOW (dialog), GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_MODAL, _("_Cancel"), GTK_RESPONSE_CANCEL, _("_Save"), GTK_RESPONSE_ACCEPT, NULL);
-  gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_ACCEPT, GTK_RESPONSE_CANCEL, -1);
   gtk_window_set_resizable (GTK_WINDOW (name_dialog), FALSE);
   gtk_window_set_skip_taskbar_hint (GTK_WINDOW (name_dialog), TRUE);
 
diff --git a/tvp-git-helper/tgh-transfer-dialog.c b/tvp-git-helper/tgh-transfer-dialog.c
index 07137b7..1237438 100644
--- a/tvp-git-helper/tgh-transfer-dialog.c
+++ b/tvp-git-helper/tgh-transfer-dialog.c
@@ -109,7 +109,6 @@ tgh_transfer_dialog_init (TghTransferDialog *dialog)
             _("_Cancel"), GTK_RESPONSE_CANCEL,
             _("_OK"), GTK_RESPONSE_OK,
             NULL);
-    gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
     gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
     gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
diff --git a/tvp-svn-helper/tsh-file-dialog.c b/tvp-svn-helper/tsh-file-dialog.c
index afe5796..0346683 100644
--- a/tvp-svn-helper/tsh-file-dialog.c
+++ b/tvp-svn-helper/tsh-file-dialog.c
@@ -77,7 +77,6 @@ tsh_file_dialog_init (TshFileDialog *dialog)
 	                        _("_Cancel"), GTK_RESPONSE_CANCEL,
 	                        _("_OK"), GTK_RESPONSE_OK,
 	                        NULL);
-	gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
 	gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
 	gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
diff --git a/tvp-svn-helper/tsh-file-selection-dialog.c b/tvp-svn-helper/tsh-file-selection-dialog.c
index f75d5fa..2f7f86a 100644
--- a/tvp-svn-helper/tsh-file-selection-dialog.c
+++ b/tvp-svn-helper/tsh-file-selection-dialog.c
@@ -152,7 +152,6 @@ tsh_file_selection_dialog_init (TshFileSelectionDialog *dialog)
 	                        _("_Cancel"), GTK_RESPONSE_CANCEL,
 	                        _("_OK"), GTK_RESPONSE_OK,
 	                        NULL);
-	gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
 	gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
 	gtk_window_set_default_size (GTK_WINDOW (dialog), 300, 200);
diff --git a/tvp-svn-helper/tsh-lock-dialog.c b/tvp-svn-helper/tsh-lock-dialog.c
index fd265dd..707a6a5 100644
--- a/tvp-svn-helper/tsh-lock-dialog.c
+++ b/tvp-svn-helper/tsh-lock-dialog.c
@@ -73,7 +73,6 @@ tsh_lock_dialog_init (TshLockDialog *dialog)
                           _("_Cancel"), GTK_RESPONSE_CANCEL,
                           _("_OK"), GTK_RESPONSE_OK,
                           NULL);
-  gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
   gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
 	gtk_window_set_default_size (GTK_WINDOW (dialog), 300, 200);
diff --git a/tvp-svn-helper/tsh-log-message-dialog.c b/tvp-svn-helper/tsh-log-message-dialog.c
index 0536833..fdb0634 100644
--- a/tvp-svn-helper/tsh-log-message-dialog.c
+++ b/tvp-svn-helper/tsh-log-message-dialog.c
@@ -119,7 +119,6 @@ tsh_log_message_dialog_init (TshLogMessageDialog *dialog)
                           _("_Cancel"), GTK_RESPONSE_CANCEL,
                           _("_OK"), GTK_RESPONSE_OK,
                           NULL);
-  gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
   gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
 	gtk_window_set_default_size (GTK_WINDOW (dialog), 300, 200);
diff --git a/tvp-svn-helper/tsh-login-dialog.c b/tvp-svn-helper/tsh-login-dialog.c
index 289e8a2..8a45639 100644
--- a/tvp-svn-helper/tsh-login-dialog.c
+++ b/tvp-svn-helper/tsh-login-dialog.c
@@ -90,7 +90,6 @@ tsh_login_dialog_init (TshLoginDialog *dialog)
 	                        _("_Cancel"), GTK_RESPONSE_CANCEL,
 	                        _("_OK"), GTK_RESPONSE_OK,
 	                        NULL);
-	gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
 	gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
 	gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
diff --git a/tvp-svn-helper/tsh-relocate-dialog.c b/tvp-svn-helper/tsh-relocate-dialog.c
index 52fdd43..862ebee 100644
--- a/tvp-svn-helper/tsh-relocate-dialog.c
+++ b/tvp-svn-helper/tsh-relocate-dialog.c
@@ -190,7 +190,6 @@ tsh_relocate_dialog_init (TshRelocateDialog *dialog)
 	                        _("_Cancel"), GTK_RESPONSE_CANCEL,
 	                        _("_OK"), GTK_RESPONSE_OK,
 	                        NULL);
-	gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
 	gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
 	gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
diff --git a/tvp-svn-helper/tsh-transfer-dialog.c b/tvp-svn-helper/tsh-transfer-dialog.c
index 91fb88b..0f62ca8 100644
--- a/tvp-svn-helper/tsh-transfer-dialog.c
+++ b/tvp-svn-helper/tsh-transfer-dialog.c
@@ -140,7 +140,6 @@ tsh_transfer_dialog_init (TshTransferDialog *dialog)
 	                        _("_Cancel"), GTK_RESPONSE_CANCEL,
 	                        _("_OK"), GTK_RESPONSE_OK,
 	                        NULL);
-	gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
 	gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
 	gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
diff --git a/tvp-svn-helper/tsh-trust-dialog.c b/tvp-svn-helper/tsh-trust-dialog.c
index 9b3a8da..ffe3b7b 100644
--- a/tvp-svn-helper/tsh-trust-dialog.c
+++ b/tvp-svn-helper/tsh-trust-dialog.c
@@ -81,7 +81,6 @@ tsh_trust_dialog_init (TshTrustDialog *dialog)
 	                        _("_Cancel"), GTK_RESPONSE_CANCEL,
 	                        _("_OK"), GTK_RESPONSE_OK,
 	                        NULL);
-	gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1);
 	gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 
 	gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list