[Xfce4-commits] [panel-plugins/xfce4-smartbookmark-plugin] 08/11: Use the correct type for GtkAdjustment
noreply at xfce.org
noreply at xfce.org
Thu Apr 28 11:51:06 CEST 2016
This is an automated email from the git hooks/post-receive script.
landry pushed a commit to branch master
in repository panel-plugins/xfce4-smartbookmark-plugin.
commit f8361fc44c661b81a58cf90b08bf59e125566032
Author: Landry Breuil <landry at xfce.org>
Date: Thu Apr 28 11:46:25 2016 +0200
Use the correct type for GtkAdjustment
---
src/smartbookmark.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/smartbookmark.c b/src/smartbookmark.c
index 39a4ccd..3552bd2 100644
--- a/src/smartbookmark.c
+++ b/src/smartbookmark.c
@@ -294,7 +294,7 @@ static void search_create_options(XfcePanelPlugin *plugin, t_search *search)
gtk_box_pack_start(GTK_BOX(hbox), sizelabel, FALSE, FALSE, 5);
/* size spinner */
- GtkObject* spinner_adj = gtk_adjustment_new (search->size, 2.0, 10.0, 1.0, 5.0, 0);
+ GtkAdjustment* spinner_adj = gtk_adjustment_new (search->size, 2.0, 10.0, 1.0, 5.0, 0);
search->size_spinner = gtk_spin_button_new(GTK_ADJUSTMENT(spinner_adj), 1.0, 0);
gtk_box_pack_start(GTK_BOX(hbox), search->size_spinner, FALSE, FALSE, 0);
gtk_widget_show(search->size_spinner);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list