Commit header changes for radio box fix.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -57,20 +57,12 @@ public:
|
|||||||
// Enabling
|
// Enabling
|
||||||
virtual bool Enable(bool enable = true);
|
virtual bool Enable(bool enable = true);
|
||||||
virtual bool Enable(unsigned int item, bool enable = true);
|
virtual bool Enable(unsigned int item, bool enable = true);
|
||||||
virtual bool IsItemEnabled(unsigned int WXUNUSED(n)) const
|
virtual bool IsItemEnabled(unsigned int item) const;
|
||||||
{
|
|
||||||
/* TODO */
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Showing
|
// Showing
|
||||||
virtual bool Show(bool show = true);
|
virtual bool Show(bool show = true);
|
||||||
virtual bool Show(unsigned int item, bool show = true);
|
virtual bool Show(unsigned int item, bool show = true);
|
||||||
virtual bool IsItemShown(unsigned int WXUNUSED(n)) const
|
virtual bool IsItemShown(unsigned int item) const;
|
||||||
{
|
|
||||||
/* TODO */
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Specific functions (in wxWidgets2 reference)
|
// Specific functions (in wxWidgets2 reference)
|
||||||
virtual void SetSelection(int item);
|
virtual void SetSelection(int item);
|
||||||
|
Reference in New Issue
Block a user