]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix after last commit
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 10 Mar 2008 15:54:03 +0000 (15:54 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 10 Mar 2008 15:54:03 +0000 (15:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52428 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/nativewin.cpp

index 5e56224abec95b8461a93f4de162e29572890585..0ccb183ff17c528db31bc0949b9130d701e6558d 100644 (file)
@@ -34,7 +34,7 @@
 // implementation
 // ============================================================================
 
 // implementation
 // ============================================================================
 
-bool wxNativeContainerWindow::Create(wxNativeContainerWindowHandle *win)
+bool wxNativeContainerWindow::Create(wxNativeContainerWindowHandle win)
 {
     if ( !wxTopLevelWindow::Create(NULL, wxID_ANY, "") )
         return false;
 {
     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();
     // 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)
 }
 
 bool wxNativeContainerWindow::Create(wxNativeContainerWindowId anid)