From 46b8d15a67701e1a2594b0eca820f166645e1b31 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 2 Dec 2009 13:27:17 +0000 Subject: [PATCH] Compilation fix after r62754. Don't pass second argument to wxPizza::New() any more in wxStaticBox. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62761 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/statbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gtk/statbox.cpp b/src/gtk/statbox.cpp index 72a26ebbca..6da1bb6c66 100644 --- a/src/gtk/statbox.cpp +++ b/src/gtk/statbox.cpp @@ -114,7 +114,7 @@ void wxStaticBox::AddChild( wxWindowBase *child ) { // make this window a container of other wxWindows by instancing a wxPizza // and packing it into the GtkFrame: - m_wxwindow = wxPizza::New( 0, this ); + m_wxwindow = wxPizza::New( 0 ); gtk_widget_show( m_wxwindow ); gtk_container_add( GTK_CONTAINER (m_widget), m_wxwindow ); } -- 2.45.2