]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/statbr95.cpp
Better fix
[wxWidgets.git] / src / msw / statbr95.cpp
index d87e65c51557dccaa3dbd03933360a7ddc134d1c..f06e0e7c05a245e0f9746639c67f236f180a141a 100644 (file)
@@ -99,10 +99,17 @@ bool wxStatusBar95::Create(wxWindow *parent,
 #endif
     }
 
-    m_hWnd = (WXHWND)CreateStatusWindow(wstyle,
-                                        wxEmptyString,
-                                        GetHwndOf(parent),
-                                        m_windowId);
+    m_hWnd = CreateWindow
+             (
+                STATUSCLASSNAME,
+                _T(""),
+                wstyle,
+                0, 0, 0, 0,
+                GetHwndOf(parent),
+                (HMENU)wxUIntToPtr(m_windowId.GetValue()),
+                wxGetInstance(),
+                NULL
+             );
     if ( m_hWnd == 0 )
     {
         wxLogSysError(_("Failed to create a status bar."));