From 47215ba40332127afcaed8c9b7f21d9591af59a0 Mon Sep 17 00:00:00 2001 From: Tim Janik <timj@gtk.org> Date: Mon, 17 Aug 1998 14:48:51 +0000 Subject: removed gtk_input_add_interp. Mon Aug 17 15:31:38 1998 Tim Janik <timj@gtk.org> * gtk/gtkmain.c: removed gtk_input_add_interp. * gtk/gtkeditable.c (gtk_editable_set_position): fixed bogus "return" keyword. (gtk_editable_get_event_time): fix default: case. * gtk/gtkclist.c (gtk_clist_swap_rows): fixes for lvalue casts. * gdk/gdkpixmap.c: made a bunch of unexported functions static. * gdk/gdkcolor.c: * gdk/gdkvisual.c: include "gdkx.h", since it exports prototypes of our functions. * various minor compilation cleanups, such as bogus commas in enums and similar things. M --- gdk/gdkpixmap.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gdk/gdkpixmap.c') diff --git a/gdk/gdkpixmap.c b/gdk/gdkpixmap.c index 799bd8d462..9fdef0ffcc 100644 --- a/gdk/gdkpixmap.c +++ b/gdk/gdkpixmap.c @@ -175,7 +175,7 @@ gdk_pixmap_create_from_data (GdkWindow *window, return pixmap; } -gint +static gint gdk_pixmap_seek_string (FILE *infile, const gchar *str, gint skip_comments) @@ -199,7 +199,7 @@ gdk_pixmap_seek_string (FILE *infile, return FALSE; } -gint +static gint gdk_pixmap_seek_char (FILE *infile, gchar c) { @@ -231,7 +231,7 @@ gdk_pixmap_seek_char (FILE *infile, return FALSE; } -gint +static gint gdk_pixmap_read_string (FILE *infile, gchar **buffer, guint *buffer_size) @@ -286,7 +286,7 @@ gdk_pixmap_read_string (FILE *infile, return ret; } -gchar* +static gchar* gdk_pixmap_skip_whitespaces (gchar *buffer) { gint32 index = 0; @@ -297,7 +297,7 @@ gdk_pixmap_skip_whitespaces (gchar *buffer) return &buffer[index]; } -gchar* +static gchar* gdk_pixmap_skip_string (gchar *buffer) { gint32 index = 0; @@ -311,7 +311,7 @@ gdk_pixmap_skip_string (gchar *buffer) /* Xlib crashed ince at a color name lengths around 125 */ #define MAX_COLOR_LEN 120 -gchar* +static gchar* gdk_pixmap_extract_color (gchar *buffer) { gint counter, numnames; -- cgit v1.2.1