From 91a87e765b7b47ac09a5b464985af8220c0a8f6d Mon Sep 17 00:00:00 2001 From: Liam Treacy Date: Mon, 10 Dec 2018 11:23:50 +0000 Subject: [PATCH] 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 --- src/qt/radiobox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/radiobox.cpp b/src/qt/radiobox.cpp index 32ccb686b1..693e673170 100644 --- a/src/qt/radiobox.cpp +++ b/src/qt/radiobox.cpp @@ -200,7 +200,7 @@ bool wxRadioBox::IsItemShown(unsigned int n) const return qtButton->isVisible(); } -unsigned wxRadioBox::GetCount() const +unsigned int wxRadioBox::GetCount() const { QList< QAbstractButton * > buttons = m_qtButtonGroup->buttons(); return buttons.size();