diff options
author | Tim Janik <timj@gtk.org> | 1998-08-17 14:48:51 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-08-17 14:48:51 +0000 |
commit | 47215ba40332127afcaed8c9b7f21d9591af59a0 (patch) | |
tree | d20b932ea561a5eeb76718e18f5abb7740ecaff0 /gdk/x11/gdkpixmap-x11.c | |
parent | 690a18f03288d8053a6c3f32f38b288ade30cde9 (diff) | |
download | gdk-pixbuf-merge-to-themes-2-2.tar.gz |
removed gtk_input_add_interp.merge-to-themes-2-2
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
Diffstat (limited to 'gdk/x11/gdkpixmap-x11.c')
-rw-r--r-- | gdk/x11/gdkpixmap-x11.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdk/x11/gdkpixmap-x11.c b/gdk/x11/gdkpixmap-x11.c index 799bd8d46..9fdef0ffc 100644 --- a/gdk/x11/gdkpixmap-x11.c +++ b/gdk/x11/gdkpixmap-x11.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; |