fix typo: s/radion/radio/
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46219 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -925,7 +925,7 @@ void wxGTKRenderer::DrawFrameWithLabel(wxDC& dc,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// check/radion buttons
|
// check/radio buttons
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
void wxGTKRenderer::DrawCheckItemBitmap(wxDC& dc,
|
void wxGTKRenderer::DrawCheckItemBitmap(wxDC& dc,
|
||||||
|
@@ -88,7 +88,7 @@ wxObject *wxMenuXmlHandler::DoCreateResource()
|
|||||||
kind = wxITEM_RADIO;
|
kind = wxITEM_RADIO;
|
||||||
if (GetBool(wxT("checkable")))
|
if (GetBool(wxT("checkable")))
|
||||||
{
|
{
|
||||||
wxASSERT_MSG( kind == wxITEM_NORMAL, _T("can't have both checkable and radion button at once") );
|
wxASSERT_MSG( kind == wxITEM_NORMAL, _T("can't have both checkable and radio button at once") );
|
||||||
kind = wxITEM_CHECK;
|
kind = wxITEM_CHECK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -75,7 +75,7 @@ wxObject *wxToolBarXmlHandler::DoCreateResource()
|
|||||||
if (GetBool(wxT("toggle")))
|
if (GetBool(wxT("toggle")))
|
||||||
{
|
{
|
||||||
wxASSERT_MSG( kind == wxITEM_NORMAL,
|
wxASSERT_MSG( kind == wxITEM_NORMAL,
|
||||||
_T("can't have both toggleable and radion button at once") );
|
_T("can't have both toggle and radio button at once") );
|
||||||
kind = wxITEM_CHECK;
|
kind = wxITEM_CHECK;
|
||||||
}
|
}
|
||||||
m_toolbar->AddTool(GetID(),
|
m_toolbar->AddTool(GetID(),
|
||||||
|
Reference in New Issue
Block a user