Stub for DoGetBestSize() since this isn't an NSControl
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26688 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -94,6 +94,8 @@ public:
|
|||||||
// layout parameters
|
// layout parameters
|
||||||
virtual int GetColumnCount() const;
|
virtual int GetColumnCount() const;
|
||||||
virtual int GetRowCount() const;
|
virtual int GetRowCount() const;
|
||||||
|
protected:
|
||||||
|
virtual wxSize DoGetBestSize() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // __WX_COCOA_RADIOBOX_H__
|
#endif // __WX_COCOA_RADIOBOX_H__
|
||||||
|
@@ -107,3 +107,8 @@ int wxRadioBox::GetRowCount() const
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wxSize wxRadioBox::DoGetBestSize() const
|
||||||
|
{
|
||||||
|
return wxSize(50,50);
|
||||||
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user