wxEmptyString decorations.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31900 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-02-10 17:25:11 +00:00
parent 8f3516688b
commit 0966aee3d9
7 changed files with 12 additions and 12 deletions

View File

@@ -112,7 +112,7 @@ wxRadioBox::wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title,
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);
}
@@ -129,7 +129,7 @@ bool wxRadioBox::Create(wxWindow *parent,
{
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);
}
@@ -309,7 +309,7 @@ void wxRadioBox::OnRadioButton(wxEvent& event)
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();