]> git.saurik.com Git - wxWidgets.git/commitdiff
Applied fix for wxCreateTopLevelRealizedWidget crash.
authorMattia Barbon <mbarbon@cpan.org>
Tue, 12 Jul 2005 22:05:43 +0000 (22:05 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Tue, 12 Jul 2005 22:05:43 +0000 (22:05 +0000)
Patch #1231717 by Johan van Zyl.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34831 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/motif/app.cpp

index ef63f6206ebc740d6db803bb8b919e7fe70508cb..4add04f7cf2508837830c270bcddbff997a87707 100644 (file)
@@ -38,7 +38,6 @@
 #pragma message disable nosimpint
 #endif
 #include <Xm/Xm.h>
-#include <Xm/Label.h>
 #include <X11/Xlib.h>
 #include <X11/Xutil.h>
 #include <X11/Xresource.h>
@@ -307,9 +306,9 @@ WXWidget wxCreateTopLevelWidget( WXDisplay* display )
 
 WXWidget wxCreateTopLevelRealizedWidget( WXDisplay* display )
 {
-    Widget rTlw = XtVaCreateWidget( "dummy_widget", xmLabelWidgetClass,
+    Widget rTlw = XtVaCreateWidget( "dummy_widget", topLevelShellWidgetClass,
                                     (Widget)wxTheApp->GetTopLevelWidget(),
-                                    NULL);
+                                     NULL, 0 );
     XtSetMappedWhenManaged( rTlw, False );
     XtRealizeWidget( rTlw );