From: Robert Roebling Date: Mon, 24 Apr 2006 19:17:26 +0000 (+0000) Subject: Compile fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/daa85e93c4c532ea2da44480a50f89fb697e1848 Compile fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38896 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/statusbr.cpp b/src/generic/statusbr.cpp index 5703a62980..512db25f6d 100644 --- a/src/generic/statusbr.cpp +++ b/src/generic/statusbr.cpp @@ -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 }