]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed incorrect XtVaXXX() function call (thanks to g++ 4 for detecting this!)
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 17 Mar 2006 00:09:41 +0000 (00:09 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 17 Mar 2006 00:09:41 +0000 (00:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38158 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/motif/app.cpp

index 90e6fc94b9441b30ede65588b030d0a5b31f2014..d6c6206c93fe9474dc1009a6b4d4b1beabcf6a2a 100644 (file)
@@ -374,7 +374,7 @@ WXWidget wxCreateTopLevelRealizedWidget( WXDisplay* WXUNUSED(display) )
 {
     Widget rTlw = XtVaCreateWidget( "dummy_widget", topLevelShellWidgetClass,
                                     (Widget)wxTheApp->GetTopLevelWidget(),
-                                     NULL, 0 );
+                                     NULL );
     XtSetMappedWhenManaged( rTlw, False );
     XtRealizeWidget( rTlw );