X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtktoolbutton.h;h=144607fbb6f23379276a8342876b23e96bf3fe75;hb=32bd10bf74cd2b7f2d16432d4198dca82c386133;hp=e9ba386a162379d5f6012dc64e0c8565c77c4b4b;hpb=5e29973773d4e2177f234675cc2a2b2016aa9fbc;p=~andy%2Fgtk diff --git a/gtk/gtktoolbutton.h b/gtk/gtktoolbutton.h index e9ba386a1..144607fbb 100644 --- a/gtk/gtktoolbutton.h +++ b/gtk/gtktoolbutton.h @@ -15,18 +15,16 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library. If not, see . */ +#ifndef __GTK_TOOL_BUTTON_H__ +#define __GTK_TOOL_BUTTON_H__ + #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) #error "Only can be included directly." #endif -#ifndef __GTK_TOOL_BUTTON_H__ -#define __GTK_TOOL_BUTTON_H__ - #include G_BEGIN_DECLS @@ -47,7 +45,7 @@ struct _GtkToolButton GtkToolItem parent; /*< private >*/ - GtkToolButtonPrivate *GSEAL (priv); + GtkToolButtonPrivate *priv; }; struct _GtkToolButtonClass @@ -73,16 +71,16 @@ GtkToolItem *gtk_tool_button_new_from_stock (const gchar *stock_id); void gtk_tool_button_set_label (GtkToolButton *button, const gchar *label); -G_CONST_RETURN gchar *gtk_tool_button_get_label (GtkToolButton *button); +const gchar * gtk_tool_button_get_label (GtkToolButton *button); void gtk_tool_button_set_use_underline (GtkToolButton *button, gboolean use_underline); 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); +const gchar * gtk_tool_button_get_stock_id (GtkToolButton *button); void gtk_tool_button_set_icon_name (GtkToolButton *button, const gchar *icon_name); -G_CONST_RETURN gchar *gtk_tool_button_get_icon_name (GtkToolButton *button); +const gchar * gtk_tool_button_get_icon_name (GtkToolButton *button); void gtk_tool_button_set_icon_widget (GtkToolButton *button, GtkWidget *icon_widget); GtkWidget * gtk_tool_button_get_icon_widget (GtkToolButton *button);