Don't omit "int" in wxQt wxRadioBox::GetCount() signature
No real changes, just use "unsigned int" instead of just "unsigned". See https://github.com/wxWidgets/wxWidgets/pull/1064
This commit is contained in:
committed by
Vadim Zeitlin
parent
0c2956be09
commit
91a87e765b
@@ -200,7 +200,7 @@ bool wxRadioBox::IsItemShown(unsigned int n) const
|
|||||||
return qtButton->isVisible();
|
return qtButton->isVisible();
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned wxRadioBox::GetCount() const
|
unsigned int wxRadioBox::GetCount() const
|
||||||
{
|
{
|
||||||
QList< QAbstractButton * > buttons = m_qtButtonGroup->buttons();
|
QList< QAbstractButton * > buttons = m_qtButtonGroup->buttons();
|
||||||
return buttons.size();
|
return buttons.size();
|
||||||
|
Reference in New Issue
Block a user