Unicode fixes for OS/2 (all inside #ifdef __WXPM__ blocks
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33892 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -364,13 +364,13 @@ void wxStatusBarGeneric::InitColours()
|
||||
m_hilightPen = wxPen(hilightColour, 1, wxSOLID);
|
||||
#elif defined(__WXPM__)
|
||||
m_mediumShadowPen = wxPen(wxColour(127, 127, 127), 1, wxSOLID);
|
||||
m_hilightPen = wxPen("WHITE", 1, wxSOLID);
|
||||
m_hilightPen = wxPen(_T("WHITE"), 1, wxSOLID);
|
||||
|
||||
wxColour vColour;
|
||||
|
||||
vColour.Set(wxString("LIGHT GREY"));
|
||||
vColour.Set(wxString(_T("LIGHT GREY")));
|
||||
SetBackgroundColour(vColour);
|
||||
vColour.Set(wxString("BLACK"));
|
||||
vColour.Set(wxString(_T("BLACK")));
|
||||
SetForegroundColour(vColour);
|
||||
#else
|
||||
m_mediumShadowPen = wxPen("GREY", 1, wxSOLID);
|
||||
|
Reference in New Issue
Block a user