X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b618daa3507aef88259e83eb8796e5a1af8f4a36..1dba7b4c69c5416eea25fc680137d672f3a9794d:/src/generic/busyinfo.cpp diff --git a/src/generic/busyinfo.cpp b/src/generic/busyinfo.cpp index f3f737f4b8..538a9525d7 100644 --- a/src/generic/busyinfo.cpp +++ b/src/generic/busyinfo.cpp @@ -52,7 +52,7 @@ wxInfoFrame::wxInfoFrame(wxWindow *parent, const wxString& message) int nParentWidth = parent->GetClientSize().x; int nColor; - SetBackgroundColour("WHITE"); + SetBackgroundColour(wxT("WHITE")); nColor = (LONG)GetBackgroundColour().GetPixel(); ::WinSetPresParam( GetHwnd() @@ -60,7 +60,7 @@ wxInfoFrame::wxInfoFrame(wxWindow *parent, const wxString& message) ,sizeof(LONG) ,(PVOID)&nColor ); - panel->SetBackgroundColour("WHITE"); + panel->SetBackgroundColour(wxT("WHITE")); nColor = (LONG)panel->GetBackgroundColour().GetPixel(); ::WinSetPresParam( GetHwndOf(panel) @@ -81,7 +81,7 @@ wxInfoFrame::wxInfoFrame(wxWindow *parent, const wxString& message) ,nHeight ,SWP_SIZE | SWP_MOVE | SWP_ACTIVATE ); - text->SetBackgroundColour("WHITE"); + text->SetBackgroundColour(wxT("WHITE")); nColor = (LONG)text->GetBackgroundColour().GetPixel(); ::WinSetPresParam( GetHwndOf(text)