diff options
author | Hans Breuer <hans@breuer.org> | 2001-10-27 00:41:12 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2001-10-27 00:41:12 +0000 |
commit | e2e6940366d46bd3f860d13fd876408799c00237 (patch) | |
tree | e4f452af34969de0a76f6d079a374e60a98308cf /gtk/gtkscale.c | |
parent | ed96ad827ce4a72af19b1b91e67ebd4f4f8ace49 (diff) | |
download | gtk+-e2e6940366d46bd3f860d13fd876408799c00237.tar.gz |
to simplify parsing for exported functions: - made implementation
2001-10-27 Hans Breuer <hans@breuer.org>
* gtk/gtkbbox.c gtk/gtkctree.c gtk/gtkhbbox.c
gtk/gtkimmulticontext.c gtk/gtklabel.c gtk/gtkliststore.c
gtk/gtkmenu.c gtk/gtkpaned.c gtk/gtkrc.c gtk/gtkscale.c
gtk/gtkstyle.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
gtk/gtktexttag.c gtk/gtktexttagtable.c gtk/gtktextview.c
gtk/gtktreestore.c gtk/gtkvbbox.c :
to simplify parsing for exported functions:
- made implementation signature static, when the local
prototype already was
- put the functions return value on it's own line
- added as space between the function name and the
opening bracket
* gtk/gtk.def : added the remaining exported functions
Diffstat (limited to 'gtk/gtkscale.c')
-rw-r--r-- | gtk/gtkscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkscale.c b/gtk/gtkscale.c index 4920c4ea95..79be496bed 100644 --- a/gtk/gtkscale.c +++ b/gtk/gtkscale.c @@ -87,7 +87,7 @@ gtk_scale_get_type (void) return scale_type; } -gboolean +static gboolean single_string_accumulator (GSignalInvocationHint *ihint, GValue *return_accu, const GValue *handler_return, |