From: Vadim Zeitlin Date: Fri, 17 Mar 2006 00:09:41 +0000 (+0000) Subject: fixed incorrect XtVaXXX() function call (thanks to g++ 4 for detecting this!) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b09a59f521e4a365f1b073e26e53f17a5e03e1fa?ds=sidebyside fixed incorrect XtVaXXX() function call (thanks to g++ 4 for detecting this!) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38158 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/motif/app.cpp b/src/motif/app.cpp index 90e6fc94b9..d6c6206c93 100644 --- a/src/motif/app.cpp +++ b/src/motif/app.cpp @@ -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 );