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:
David Elliott
2004-04-10 03:19:37 +00:00
parent 058d7af6e9
commit 9a165f54b9
2 changed files with 7 additions and 0 deletions

View File

@@ -94,6 +94,8 @@ public:
// layout parameters
virtual int GetColumnCount() const;
virtual int GetRowCount() const;
protected:
virtual wxSize DoGetBestSize() const;
};
#endif // __WX_COCOA_RADIOBOX_H__

View File

@@ -107,3 +107,8 @@ int wxRadioBox::GetRowCount() const
return 0;
}
wxSize wxRadioBox::DoGetBestSize() const
{
return wxSize(50,50);
}