diff options
author | Tor Lillqvist <tml@src.gnome.org> | 1999-07-12 23:12:39 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 1999-07-12 23:12:39 +0000 |
commit | e3c310e538cb4584c38f36f3a86863685c51d62f (patch) | |
tree | c23182d643b66b46eaaa1af9eae2169999e4b0ac /gtk/gtksocket.c | |
parent | af663f9a3a250c54b8b71cc7e4dcd01853e8922b (diff) | |
download | gtk+-e3c310e538cb4584c38f36f3a86863685c51d62f.tar.gz |
Less logging verbiage.
* gdk/win32/gdkdraw.c (gdk_draw_pixmap): Less logging verbiage.
* gdk/win32/gdkevents.c: Fix long-standing bug in key
events. The key.string wasn't zero-terminated, still we strdup'ed
it in gdk_event_copy(). Synthesize crossing events for button
events before possible propagation.
* gdk/win32/gdkwindow.c: Log gdk_window_set_title.
* gdk/win32/makefile.cygwin
* gtk/makefile.cygwin: Use new DLL naming style for the
GCC-compiled ones.
* gdk/win32/makefile.msc
* gtk/makefile.msc: Cosmetics mostly.
* gtk/gtk.def: Add missing entry points.
* gtk/gtksocket.c: Add dummy gtk_socket_get_type() for Win32.
Diffstat (limited to 'gtk/gtksocket.c')
-rw-r--r-- | gtk/gtksocket.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gtk/gtksocket.c b/gtk/gtksocket.c index ed1508bedb..2e830b5d6b 100644 --- a/gtk/gtksocket.c +++ b/gtk/gtksocket.c @@ -750,6 +750,13 @@ gtk_socket_filter_func (GdkXEvent *gdk_xevent, GdkEvent *event, gpointer data) #elif GDK_WINDOWING == GDK_WINDOWING_WIN32 +guint +gtk_socket_get_type () +{ + g_error ("GtkSocket not implemented"); + return 42; +} + GtkWidget* gtk_socket_new () { |