]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/statline.cpp
zipstrm link fix
[wxWidgets.git] / src / msw / statline.cpp
index 1c51bf61d90d63d04cd996eeea37a6015c8edba3..55d237160d9b111da88a0bac7ff424f892a11f98 100644 (file)
@@ -32,6 +32,7 @@
 #if wxUSE_STATLINE
 
 #include "wx/msw/private.h"
+#include "wx/log.h"
 
 // ============================================================================
 // implementation
@@ -50,7 +51,7 @@ bool wxStaticLine::Create( wxWindow *parent,
                            long style,
                            const wxString &name)
 {
-    if ( !CreateBase(parent, id, pos, size, style, name) )
+    if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
         return FALSE;
 
     parent->AddChild(this);
@@ -64,7 +65,7 @@ bool wxStaticLine::Create( wxWindow *parent,
     m_hWnd = (WXHWND)::CreateWindow
                        (
                         _T("STATIC"),
-                        "",
+                        _T(""),
                         WS_VISIBLE | WS_CHILD |
                         SS_GRAYRECT | SS_SUNKEN, // | SS_ETCHEDFRAME,
                         pos.x, pos.y, sizeReal.x, sizeReal.y,