Eliminated a compiler warning caused by not casting an argument in a

debugging message. :)
This commit is contained in:
scott 1997-12-26 16:11:40 +00:00
parent ad1a805810
commit 7c21169e72
8 changed files with 43 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Fri Dec 26 11:20:03 1997 Scott Goehring <scott@poverty.bloomington.in.us>
* gtk/gtkhandlebox.c (gtk_handle_box_reparent): eliminated a
compiler warning caused by not casting an argument in a debugging
message. :)
Fri Dec 26 02:59:39 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
* gdk/gdktypes.h gdk/gdk.c gdk/gdkwindow.c: Added new

View File

@ -1,3 +1,9 @@
Fri Dec 26 11:20:03 1997 Scott Goehring <scott@poverty.bloomington.in.us>
* gtk/gtkhandlebox.c (gtk_handle_box_reparent): eliminated a
compiler warning caused by not casting an argument in a debugging
message. :)
Fri Dec 26 02:59:39 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
* gdk/gdktypes.h gdk/gdk.c gdk/gdkwindow.c: Added new

View File

@ -1,3 +1,9 @@
Fri Dec 26 11:20:03 1997 Scott Goehring <scott@poverty.bloomington.in.us>
* gtk/gtkhandlebox.c (gtk_handle_box_reparent): eliminated a
compiler warning caused by not casting an argument in a debugging
message. :)
Fri Dec 26 02:59:39 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
* gdk/gdktypes.h gdk/gdk.c gdk/gdkwindow.c: Added new

View File

@ -1,3 +1,9 @@
Fri Dec 26 11:20:03 1997 Scott Goehring <scott@poverty.bloomington.in.us>
* gtk/gtkhandlebox.c (gtk_handle_box_reparent): eliminated a
compiler warning caused by not casting an argument in a debugging
message. :)
Fri Dec 26 02:59:39 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
* gdk/gdktypes.h gdk/gdk.c gdk/gdkwindow.c: Added new

View File

@ -1,3 +1,9 @@
Fri Dec 26 11:20:03 1997 Scott Goehring <scott@poverty.bloomington.in.us>
* gtk/gtkhandlebox.c (gtk_handle_box_reparent): eliminated a
compiler warning caused by not casting an argument in a debugging
message. :)
Fri Dec 26 02:59:39 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
* gdk/gdktypes.h gdk/gdk.c gdk/gdkwindow.c: Added new

View File

@ -1,3 +1,9 @@
Fri Dec 26 11:20:03 1997 Scott Goehring <scott@poverty.bloomington.in.us>
* gtk/gtkhandlebox.c (gtk_handle_box_reparent): eliminated a
compiler warning caused by not casting an argument in a debugging
message. :)
Fri Dec 26 02:59:39 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
* gdk/gdktypes.h gdk/gdk.c gdk/gdkwindow.c: Added new

View File

@ -1,3 +1,9 @@
Fri Dec 26 11:20:03 1997 Scott Goehring <scott@poverty.bloomington.in.us>
* gtk/gtkhandlebox.c (gtk_handle_box_reparent): eliminated a
compiler warning caused by not casting an argument in a debugging
message. :)
Fri Dec 26 02:59:39 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
* gdk/gdktypes.h gdk/gdk.c gdk/gdkwindow.c: Added new

View File

@ -369,7 +369,7 @@ gtk_handle_box_reparent (GtkWidget *widget,
else
{
GTK_HANDLE_BOX(widget)->is_onroot = FALSE;
g_print("Reparenting to parent %#x\n", widget->parent->window);
g_print("Reparenting to parent %#x\n", (gint)(widget->parent->window));
gdk_window_reparent(widget->window, widget->parent->window,
widget->allocation.x, widget->allocation.y);
widget->requisition.height = 3;