// for all others, include the necessary headers (this file is usually all you
// need because it includes almost all "standard" wxWindows headers)
#ifndef WX_PRECOMP
+ #include "wx/wx.h"
#include "wx/app.h"
#include "wx/frame.h"
#endif
if ( m_frameStatusBar )
{
wxSize sz = GetClientSize();
- SetStatusText(wxString::Format("%dx%d", sz.x, sz.y), 1);
+ SetStatusText(wxString::Format(_T("%dx%d"), sz.x, sz.y), 1);
}
#endif // wxUSE_STATUSBAR
{
m_frame->SetStatusText(wxString::Format
(
- "Page size = %d, pos = %d, max = %d",
+ _T("Page size = %d, pos = %d, max = %d"),
GetScrollThumb(wxVERTICAL),
GetScrollPos(wxVERTICAL),
GetScrollRange(wxVERTICAL)