// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "busyinfo.h"
-#endif
-
#include "wx/wxprec.h"
#ifdef __BORLANDC__
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)
{
m_InfoFrame = new wxInfoFrame( parent, message);
m_InfoFrame->Show(true);
-#ifdef __WXMAC__
- m_InfoFrame->Update() ;
-#else
m_InfoFrame->Refresh();
m_InfoFrame->Update();
-#endif
}
wxBusyInfo::~wxBusyInfo()