// we add wxBU_EXACTFIT because the bitmap buttons are not the standard
// ones and so shouldn't be forced to be of the standard size which is
// typically too big for them
- if ( !wxButton::Create(parent, id, bitmap, _T(""),
+ if ( !wxButton::Create(parent, id, bitmap, wxEmptyString,
pos, size, style | wxBU_EXACTFIT, validator, name) )
return false;
wxString wxMenuBar::GetLabelTop(size_t pos) const
{
- wxCHECK_MSG( pos < GetCount(), _T(""), _T("invalid index in GetLabelTop") );
+ wxCHECK_MSG( pos < GetCount(), wxEmptyString, _T("invalid index in GetLabelTop") );
return m_menuInfos[pos].GetLabel();
}
wxString wxNotebook::GetPageText(size_t nPage) const
{
- wxCHECK_MSG( IS_VALID_PAGE(nPage), _T(""), _T("invalid notebook page") );
+ wxCHECK_MSG( IS_VALID_PAGE(nPage), wxEmptyString, _T("invalid notebook page") );
return m_titles[nPage];
}
Init();
- (void)Create(parent, id, title, pos, size, chs.GetCount(),
+ (void)Create(parent, id, title, pos, size, chs.GetCount(),
chs.GetStrings(), majorDim, style, val, name);
}
{
wxCArrayString chs(choices);
- return Create(parent, id, title, pos, size, chs.GetCount(),
+ return Create(parent, id, title, pos, size, chs.GetCount(),
chs.GetStrings(), majorDim, style, val, name);
}
wxString wxRadioBox::GetString(int n) const
{
- wxCHECK_MSG( IsValid(n), _T(""),
+ wxCHECK_MSG( IsValid(n), wxEmptyString,
_T("invalid index in wxRadioBox::GetString") );
return m_buttons[n]->GetLabel();
wxString wxStatusBarUniv::GetStatusText(int number) const
{
- wxCHECK_MSG( number >= 0 && number < m_nFields, _T(""),
+ wxCHECK_MSG( number >= 0 && number < m_nFields, wxEmptyString,
_T("invalid status bar field index") );
return m_statusText[number];
void wxTextCtrl::Clear()
{
- SetValue(_T(""));
+ SetValue(wxEmptyString);
}
bool wxTextCtrl::ReplaceLine(wxTextCoord line,
// if necessary
OrderPositions(from, to);
- Replace(from, to, _T(""));
+ Replace(from, to, wxEmptyString);
}
void wxTextCtrl::WriteText(const wxString& text)
//this is called during DoGetBestSize
if (line == 0 && GetLineCount() == 0) return wxEmptyString ;
- wxCHECK_MSG( (size_t)line < GetLineCount(), _T(""),
+ wxCHECK_MSG( (size_t)line < GetLineCount(), wxEmptyString,
_T("line index out of range") );
return GetLines()[line];
wxObject *wxBitmapXmlHandler::DoCreateResource()
{
- return new wxBitmap(GetBitmap(wxT("")));
+ return new wxBitmap(GetBitmap(wxEmptyString));
}
bool wxBitmapXmlHandler::CanHandle(wxXmlNode *node)
wxObject *wxIconXmlHandler::DoCreateResource()
{
- return new wxIcon(GetIcon(wxT("")));
+ return new wxIcon(GetIcon(wxEmptyString));
}
bool wxIconXmlHandler::CanHandle(wxXmlNode *node)