From 27547285fe09317778a23e68c7d0767220710471 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 10 Mar 2008 15:54:03 +0000 Subject: [PATCH] compilation fix after last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52428 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/nativewin.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gtk/nativewin.cpp b/src/gtk/nativewin.cpp index 5e56224abe..0ccb183ff1 100644 --- a/src/gtk/nativewin.cpp +++ b/src/gtk/nativewin.cpp @@ -34,7 +34,7 @@ // implementation // ============================================================================ -bool wxNativeContainerWindow::Create(wxNativeContainerWindowHandle *win) +bool wxNativeContainerWindow::Create(wxNativeContainerWindowHandle win) { if ( !wxTopLevelWindow::Create(NULL, wxID_ANY, "") ) return false; @@ -48,6 +48,8 @@ bool wxNativeContainerWindow::Create(wxNativeContainerWindowHandle *win) // doesn't make much sense unless we also react to visibility changes, so // just suppose it's always shown for now) Show(); + + return true; } bool wxNativeContainerWindow::Create(wxNativeContainerWindowId anid)