summaryrefslogtreecommitdiff
path: root/gtk/gtkscalebutton.h
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@src.gnome.org>2007-06-10 15:32:02 +0000
committerEmmanuele Bassi <ebassi@src.gnome.org>2007-06-10 15:32:02 +0000
commit2c1866574317c8a85caacf6e1e581e275230a409 (patch)
tree3ee975f21863738b084ee4ebda84c3fa7424491b /gtk/gtkscalebutton.h
parent7e43841f4da3bc7ff5bb1afb31edfabca2f83bca (diff)
downloadgtk+-2c1866574317c8a85caacf6e1e581e275230a409.tar.gz
Fix code style and warts in GtkScaleButton
This patch fixes the code style inconsistencies and some weird bits of the GtkScaleButton widget implementation. svn path=/trunk/; revision=18092
Diffstat (limited to 'gtk/gtkscalebutton.h')
-rw-r--r--gtk/gtkscalebutton.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/gtk/gtkscalebutton.h b/gtk/gtkscalebutton.h
index ee41caf543..0644ace28d 100644
--- a/gtk/gtkscalebutton.h
+++ b/gtk/gtkscalebutton.h
@@ -67,9 +67,12 @@ struct _GtkScaleButtonClass
struct _GtkScaleButton
{
- GtkButton parent;
- GtkWidget *plus_button;
- GtkWidget *minus_button;
+ GtkButton parent;
+
+ GtkWidget *plus_button;
+ GtkWidget *minus_button;
+
+ /*< private >*/
GtkScaleButtonPrivate *priv;
};
@@ -80,7 +83,7 @@ GtkWidget* gtk_scale_button_new (GtkIconSize size,
gdouble step,
const gchar **icons);
void gtk_scale_button_set_icons (GtkScaleButton *button,
- const gchar **icons);
+ const gchar **icons);
gdouble gtk_scale_button_get_value (GtkScaleButton *button);
void gtk_scale_button_set_value (GtkScaleButton *button,
gdouble value);