diff options
author | Michael Natterer <mitch@imendio.com> | 2008-01-25 09:30:40 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2008-01-25 09:30:40 +0000 |
commit | a362eecc4a0c9b4aa28bac7b6e64b8dfaf360646 (patch) | |
tree | b998c156b64284b009afcdf02107db6f03a1230e /gtk/gtkbutton.h | |
parent | 594b710214c1e6bfe4724d01b49c0a1cb76b8568 (diff) | |
download | gtk+-a362eecc4a0c9b4aa28bac7b6e64b8dfaf360646.tar.gz |
gtk/gtkbutton.h gtk/gtkcellrenderer.h gtk/gtkimcontext.h gtk/gtkstyle.h
2008-01-25 Michael Natterer <mitch@imendio.com>
* gtk/gtkbutton.h
* gtk/gtkcellrenderer.h
* gtk/gtkimcontext.h
* gtk/gtkstyle.h
* gtk/gtktoolbar.h
* gtk/gtktooltip.h
* gtk/gtktreeprivate.h
* gtk/gtktreeviewcolumn.h
* gtk/gtkwidget.h: add const to constant structs which are passed
into GTK+. Also add some forgotten const for const strings.
* gtk/gtkbutton.c
* gtk/gtkcellrenderer.c
* gtk/gtkimcontext.c
* gtk/gtkstyle.c
* gtk/gtktoolbar.c
* gtk/gtktooltip.c
* gtk/gtktreeview.c
* gtk/gtktreeviewcolumn.c
* gtk/gtkwidget.c: changed accordingly.
svn path=/trunk/; revision=19399
Diffstat (limited to 'gtk/gtkbutton.h')
-rw-r--r-- | gtk/gtkbutton.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/gtkbutton.h b/gtk/gtkbutton.h index c9fe63bcff..3d66e01252 100644 --- a/gtk/gtkbutton.h +++ b/gtk/gtkbutton.h @@ -125,14 +125,14 @@ void gtk_button_set_image_position (GtkButton *button, GtkPositionType position); GtkPositionType gtk_button_get_image_position (GtkButton *button); -void _gtk_button_set_depressed (GtkButton *button, - gboolean depressed); -void _gtk_button_paint (GtkButton *button, - GdkRectangle *area, - GtkStateType state_type, - GtkShadowType shadow_type, - const gchar *main_detail, - const gchar *default_detail); +void _gtk_button_set_depressed (GtkButton *button, + gboolean depressed); +void _gtk_button_paint (GtkButton *button, + const GdkRectangle *area, + GtkStateType state_type, + GtkShadowType shadow_type, + const gchar *main_detail, + const gchar *default_detail); G_END_DECLS |