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

@ -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;