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

andre pushed a 
commit to branch 
master
in repository xfce/thunar.

commit d13ef89eccb1a44d92c1cf01743bd2c930e67bba
Author: Andre Miranda <andre...@xfce.org>
Date:   Mon Aug 13 19:57:27 2018 -0300

    Fix compile warning (GtkButton cast) (Bug #14601)
---
 thunar/thunar-progress-view.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/thunar/thunar-progress-view.c b/thunar/thunar-progress-view.c
index c2b445c..e30fb68 100644
--- a/thunar/thunar-progress-view.c
+++ b/thunar/thunar-progress-view.c
@@ -228,7 +228,7 @@ thunar_progress_view_init (ThunarProgressView *view)
   gtk_widget_show (view->progress_label);
 
   button = gtk_button_new_from_icon_name ("process-stop", 
GTK_ICON_SIZE_BUTTON);
-  gtk_button_set_label (button, _("Cancel"));
+  gtk_button_set_label (GTK_BUTTON (button), _("Cancel"));
   g_signal_connect_swapped (button, "clicked", G_CALLBACK 
(thunar_progress_view_cancel_job), view);
   gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, TRUE, 0);
   gtk_widget_set_can_focus (button, FALSE);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to