diff options
Diffstat (limited to 'gtk/gtktoolbutton.h')
-rw-r--r-- | gtk/gtktoolbutton.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gtk/gtktoolbutton.h b/gtk/gtktoolbutton.h index 72456e894e..e2c6efbfe7 100644 --- a/gtk/gtktoolbutton.h +++ b/gtk/gtktoolbutton.h @@ -48,7 +48,6 @@ struct _GtkToolButton gchar *label_text; GtkWidget *label_widget; GtkWidget *icon_widget; - GtkIconSet *icon_set; guint use_underline : 1; }; @@ -64,7 +63,8 @@ struct _GtkToolButtonClass }; GType gtk_tool_button_get_type (void); -GtkToolItem *gtk_tool_button_new (void); +GtkToolItem *gtk_tool_button_new (const gchar *label, + GtkWidget *icon_widget); GtkToolItem *gtk_tool_button_new_from_stock (const gchar *stock_id); void gtk_tool_button_set_label (GtkToolButton *button, @@ -76,9 +76,6 @@ gboolean gtk_tool_button_get_use_underline (GtkToolButton *button); void gtk_tool_button_set_stock_id (GtkToolButton *button, const gchar *stock_id); G_CONST_RETURN gchar *gtk_tool_button_get_stock_id (GtkToolButton *button); -void gtk_tool_button_set_icon_set (GtkToolButton *button, - GtkIconSet *icon_set); -GtkIconSet * gtk_tool_button_get_icon_set (GtkToolButton *button); void gtk_tool_button_set_icon_widget (GtkToolButton *button, GtkWidget *icon); GtkWidget * gtk_tool_button_get_icon_widget (GtkToolButton *button); |