diff options
author | Tim Janik <timj@gtk.org> | 2000-11-05 05:08:05 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2000-11-05 05:08:05 +0000 |
commit | ab6b184e9d7b9dbb50e3571b26e32f5c1a74bdce (patch) | |
tree | 57d1e99eb9e5b3fe5910d5d31d0b2d881294af9b /gtk/gtksignal.c | |
parent | acf4b21ec289c898f6fcb8138784633f98ec5d7e (diff) | |
download | gtk+-ab6b184e9d7b9dbb50e3571b26e32f5c1a74bdce.tar.gz |
provide a toggle button to temporarily disable position recording in the
Sun Nov 5 05:32:39 2000 Tim Janik <timj@gtk.org>
* gtk/testgtk.c (uposition_stop_configure): provide a toggle
button to temporarily disable position recording in the
"saved position" test.
Sat Nov 4 05:37:17 2000 Tim Janik <timj@gtk.org>
* gtk/gtkthemes.c: added compat code that temporarily implements
GtkThemeEnginePlugin as a GObject exporting GTypePlugin. this is
going to be revamped by owen's upcoming GtkModule patches, but
untill then people want gtk to build, right? ;)
Diffstat (limited to 'gtk/gtksignal.c')
-rw-r--r-- | gtk/gtksignal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtksignal.c b/gtk/gtksignal.c index 219680dc13..e399423e20 100644 --- a/gtk/gtksignal.c +++ b/gtk/gtksignal.c @@ -173,8 +173,8 @@ gtk_signal_compat_matched (GtkObject *object, } if (!n_handlers) - g_warning ("unable to find signal handler for object(%p) with func(%p) and data(%p)", - object, func, data); + g_warning ("unable to find signal handler for object(%s:%p) with func(%p) and data(%p)", + G_OBJECT_TYPE_NAME (object), object, func, data); } static inline gboolean |