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
This commit is contained in:
Vadim Zeitlin
2006-03-17 00:09:41 +00:00
parent 262a153683
commit b09a59f521

View 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 );