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/gtkliststore.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/gtkliststore.c')
-rw-r--r-- | gtk/gtkliststore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkliststore.c b/gtk/gtkliststore.c index 312b0c7d03..77c1df072b 100644 --- a/gtk/gtkliststore.c +++ b/gtk/gtkliststore.c @@ -597,7 +597,7 @@ gtk_list_store_iter_parent (GtkTreeModel *tree_model, return FALSE; } -gboolean +static gboolean gtk_list_store_real_set_value (GtkListStore *list_store, GtkTreeIter *iter, gint column, |