diff options
author | Owen Taylor <otaylor@redhat.com> | 1999-02-21 21:24:02 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1999-02-21 21:24:02 +0000 |
commit | 039d738e3b8914bc075265a4c6d52168674563cd (patch) | |
tree | 4a5a96efab4672163a8ac300f71cdf2196862dca /gtk/gtkhandlebox.c | |
parent | f3f493abbb24b14d404087527a02e3906284fb0a (diff) | |
download | gtk+-039d738e3b8914bc075265a4c6d52168674563cd.tar.gz |
Changed warnings from g_message() to g_warning().
Sun Feb 21 16:16:22 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkscrolledwindow.c gdk/gdkfont.c gdk/gdkim.c:
Changed warnings from g_message() to g_warning().
* gdk/gdkim.c (gdk_ic_destroy): Changed g_print
to g_message within GDK_NOTE()
* gtk/gtkcolorsel.c gtk/gtkhandlebox.c:
Removed some leftover debugging printfs.
Diffstat (limited to 'gtk/gtkhandlebox.c')
-rw-r--r-- | gtk/gtkhandlebox.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gtk/gtkhandlebox.c b/gtk/gtkhandlebox.c index 79c9f717aa..d62fbd71ea 100644 --- a/gtk/gtkhandlebox.c +++ b/gtk/gtkhandlebox.c @@ -954,8 +954,6 @@ gtk_handle_box_button_changed (GtkWidget *widget, hb->attach_allocation.width = width; hb->attach_allocation.height = height; - g_print ("%d %d\n", width, height); - hb->in_drag = TRUE; fleur = gdk_cursor_new (GDK_FLEUR); if (gdk_pointer_grab (widget->window, @@ -1076,9 +1074,6 @@ gtk_handle_box_motion (GtkWidget *widget, break; } - g_print ("(%d %d), (%d %d)\n", - float_pos1, float_pos2, attach_pos1, attach_pos2); - is_snapped = ((attach_pos1 - TOLERANCE < float_pos1) && (attach_pos2 + TOLERANCE > float_pos2)) || ((float_pos1 - TOLERANCE < attach_pos1) && |