Add support for grid layout in wxRadioBox under wxQT

This commit is contained in:
Graham Dawes
2019-01-11 14:39:54 +00:00
parent 12d4ed3e8c
commit 4f32cfc5fb
2 changed files with 40 additions and 21 deletions

View File

@@ -10,7 +10,7 @@
class QGroupBox;
class QButtonGroup;
class QBoxLayout;
class QGridLayout;
class WXDLLIMPEXP_CORE wxRadioBox : public wxControl, public wxRadioBoxBase
{
@@ -89,7 +89,7 @@ private:
QButtonGroup *m_qtButtonGroup;
// Autofit layout for buttons (either vert. or horiz.):
QBoxLayout *m_qtBoxLayout;
QGridLayout *m_qtGridLayout;
wxDECLARE_DYNAMIC_CLASS(wxRadioBox);
};