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
This commit is contained in:
Hans Breuer
2001-10-27 00:41:12 +00:00
committed by Hans Breuer
parent ed96ad827c
commit e2e6940366
25 changed files with 222 additions and 59 deletions

View File

@ -497,10 +497,10 @@ gtk_paned_set_position (GtkPaned *paned,
}
void
gtk_paned_compute_position(GtkPaned *paned,
gint allocation,
gint child1_req,
gint child2_req)
gtk_paned_compute_position (GtkPaned *paned,
gint allocation,
gint child1_req,
gint child2_req)
{
gint old_position;