diff options
author | Hans Breuer <hans@breuer.org> | 2001-10-28 21:28:51 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2001-10-28 21:28:51 +0000 |
commit | 93f12bd6d46a38717e4d3358311c0b6024609b16 (patch) | |
tree | 71a12b0433b01d4fcbfb43a7628f5f6104a98ae8 /gdk/win32/gdkdnd-win32.c | |
parent | a20c8a435e438178f4a4b5d091bc6914b21537dc (diff) | |
download | gtk+-93f12bd6d46a38717e4d3358311c0b6024609b16.tar.gz |
static correct-ness, underscore prefixing of library internal functions
2001-10-28 Hans Breuer <hans@breuer.org>
* gdk/gdk.c gdk/gdkevents.c
gdk/win32/gdkcolor-win32.c gdk/win32/gdkdnd-win32.c
gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkfont-win32.c gdk/win32/gdkgc-win32.c
gdk/win32/gdkim-win32.c gdk/win32/gdkmain-win32.c
gdk/win32/gdkprivate-win32.h gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gdkwin32.h
gdk/win32/gdkwindow-win32.c gdk/win32/gdkwindow-win32.h :
static correct-ness, underscore prefixing of library internal
functions
(applied the undisputed and the win32 part. Of the latter
I'm probably the one who will change it back again, if Owen
decides that the Gdk*Impl types should not be private to Gdk)
* gdk/gdk.def : added the remaining exported functions
Diffstat (limited to 'gdk/win32/gdkdnd-win32.c')
-rw-r--r-- | gdk/win32/gdkdnd-win32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/win32/gdkdnd-win32.c b/gdk/win32/gdkdnd-win32.c index d9767f336f..44fe63da60 100644 --- a/gdk/win32/gdkdnd-win32.c +++ b/gdk/win32/gdkdnd-win32.c @@ -1007,7 +1007,7 @@ gdk_dropfiles_filter (GdkXEvent *xev, } g_string_append (result, "\015\012"); } - gdk_sel_prop_store (_gdk_parent_root, text_uri_list_atom, 8, + _gdk_selection_property_store (_gdk_parent_root, text_uri_list_atom, 8, result->str, result->len + 1); DragFinish (hdrop); @@ -1050,7 +1050,7 @@ _gdk_dnd_init (void) } void -gdk_win32_dnd_exit (void) +_gdk_win32_dnd_exit (void) { #ifdef OLE2_DND OleUninitialize (); |