int nParentWidth = parent->GetClientSize().x;
int nColor;
- SetBackgroundColour("WHITE");
+ SetBackgroundColour(wxT("WHITE"));
nColor = (LONG)GetBackgroundColour().GetPixel();
::WinSetPresParam( GetHwnd()
,sizeof(LONG)
,(PVOID)&nColor
);
- panel->SetBackgroundColour("WHITE");
+ panel->SetBackgroundColour(wxT("WHITE"));
nColor = (LONG)panel->GetBackgroundColour().GetPixel();
::WinSetPresParam( GetHwndOf(panel)
,nHeight
,SWP_SIZE | SWP_MOVE | SWP_ACTIVATE
);
- text->SetBackgroundColour("WHITE");
+ text->SetBackgroundColour(wxT("WHITE"));
nColor = (LONG)text->GetBackgroundColour().GetPixel();
::WinSetPresParam( GetHwndOf(text)