diff options
author | Tor Lillqvist <tml@iki.fi> | 2000-03-16 21:58:35 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2000-03-16 21:58:35 +0000 |
commit | 0cc2a00dc9f87428282f9fb0954c571a7cd465a5 (patch) | |
tree | 3c34b4b9739383e6e569e1af3b603acaf7b35942 /gdk/win32/gdkselection-win32.c | |
parent | 2cc21d52cd7c899c88823869af84e5c97ca830ac (diff) | |
download | gdk-pixbuf-0cc2a00dc9f87428282f9fb0954c571a7cd465a5.tar.gz |
Remove the #ifndef USE_DISPATCHMESSAGE sections, we do want to use
2000-03-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkevents-win32.c: Remove the #ifndef
USE_DISPATCHMESSAGE sections, we do want to use DispatchMessage.
* gdk/win32/gdkfont-win32.c
* gdk/win32/gdkproperty-win32.c
* gdk/win32/gdkselection-win32.c
* gdk/win32/gdkwindow-win32.c: Add const to some arguments that are
now declared such.
Diffstat (limited to 'gdk/win32/gdkselection-win32.c')
-rw-r--r-- | gdk/win32/gdkselection-win32.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gdk/win32/gdkselection-win32.c b/gdk/win32/gdkselection-win32.c index 86be842e7..2767ac0e9 100644 --- a/gdk/win32/gdkselection-win32.c +++ b/gdk/win32/gdkselection-win32.c @@ -366,11 +366,11 @@ gdk_selection_send_notify (guint32 requestor, } gint -gdk_text_property_to_text_list (GdkAtom encoding, - gint format, - guchar *text, - gint length, - gchar ***list) +gdk_text_property_to_text_list (GdkAtom encoding, + gint format, + const guchar *text, + gint length, + gchar ***list) { GDK_NOTE (MISC, g_print ("gdk_text_property_to_text_list not implemented\n")); @@ -387,11 +387,11 @@ gdk_free_text_list (gchar **list) } gint -gdk_string_to_compound_text (gchar *str, - GdkAtom *encoding, - gint *format, - guchar **ctext, - gint *length) +gdk_string_to_compound_text (const gchar *str, + GdkAtom *encoding, + gint *format, + guchar **ctext, + gint *length) { g_warning ("gdk_string_to_compound_text: Not implemented"); |