]> git.saurik.com Git - wxWidgets.git/commitdiff
Compile fix
authorRobert Roebling <robert@roebling.de>
Mon, 24 Apr 2006 19:17:26 +0000 (19:17 +0000)
committerRobert Roebling <robert@roebling.de>
Mon, 24 Apr 2006 19:17:26 +0000 (19:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38896 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/statusbr.cpp

index 5703a629808e386b14b8b0a23c8cbec725d1e93c..512db25f6d967d8fe9143b7e99a6a07e867e1beb 100644 (file)
@@ -367,8 +367,8 @@ void wxStatusBarGeneric::InitColours()
     vColour.Set(wxString(_T("BLACK")));
     SetForegroundColour(vColour);
 #else
-    m_mediumShadowPen = wxPen("GREY", 1, wxSOLID);
-    m_hilightPen = wxPen("WHITE", 1, wxSOLID);
+    m_mediumShadowPen = wxPen(_T("GREY"), 1, wxSOLID);
+    m_hilightPen = wxPen(_T("WHITE"), 1, wxSOLID);
 #endif
 }