diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-07-12 17:50:14 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-07-12 17:50:14 +0000 |
commit | 79d45ab85da53cabd6697ce5c16b96b651706a9f (patch) | |
tree | d7f9b9f528437821a6444cc1c59c101e7293220c /gtk/gtkcurve.c | |
parent | eb1dbcd4a7f712d4aa17dce0f25481ed2738a826 (diff) | |
download | gtk+-79d45ab85da53cabd6697ce5c16b96b651706a9f.tar.gz |
Formatting fixes from multihead brnach. [ mostly foo(bar) => foo (bar) ]
Thu Jul 12 13:43:27 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkclist.c gtk/gtkcolorsel.c gtk/gtkcombo.c
gtk/gtkctree.c gtk/gtkcurve.c gtk/gtkentry.c
gtk/gtkfontsel.c gtk/gtkhandlebox.c
gtk/gtkimcontextsimple.c gtk/gtkmain.c gtk/gtkmenu.c
gtk/gtkmenuitem.c gtk/gtkoptionmenu.c gtk/gtkpixmap.c
gtk/gtkselection.c gtk/gtktextdisplay.c gtk/gtktextview.c
gtk/gtktooltips.c gtk/gtkwidget.c gtk/gtkwindow.c:
Formatting fixes from multihead brnach. [ mostly foo(bar) => foo (bar) ]
Diffstat (limited to 'gtk/gtkcurve.c')
-rw-r--r-- | gtk/gtkcurve.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcurve.c b/gtk/gtkcurve.c index e846dd117d..40487bc040 100644 --- a/gtk/gtkcurve.c +++ b/gtk/gtkcurve.c @@ -383,7 +383,7 @@ gtk_curve_draw (GtkCurve *c, gint width, gint height) /* clear the pixmap: */ gtk_paint_flat_box (style, c->pixmap, GTK_STATE_NORMAL, GTK_SHADOW_NONE, - NULL, GTK_WIDGET(c), "curve_bg", + NULL, GTK_WIDGET (c), "curve_bg", 0, 0, width + RADIUS * 2, height + RADIUS * 2); /* draw the grid lines: (XXX make more meaningful) */ for (i = 0; i < 5; i++) @@ -675,8 +675,8 @@ gtk_curve_set_curve_type (GtkCurve *c, GtkCurveType new_type) { gint width, height; - width = GTK_WIDGET(c)->allocation.width - RADIUS * 2; - height = GTK_WIDGET(c)->allocation.height - RADIUS * 2; + width = GTK_WIDGET (c)->allocation.width - RADIUS * 2; + height = GTK_WIDGET (c)->allocation.height - RADIUS * 2; if (new_type == GTK_CURVE_TYPE_FREE) { |