From b09a59f521e4a365f1b073e26e53f17a5e03e1fa Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 17 Mar 2006 00:09:41 +0000 Subject: [PATCH] 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 --- src/motif/app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.45.2