From daa85e93c4c532ea2da44480a50f89fb697e1848 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Mon, 24 Apr 2006 19:17:26 +0000 Subject: [PATCH] Compile fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38896 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/statusbr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } -- 2.47.2