automated virtual/const fixes by ifacecheck

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-09-22 19:01:17 +00:00
parent 62a7da7532
commit b7e94bd7eb
15 changed files with 56 additions and 56 deletions

View File

@@ -123,7 +123,7 @@ public:
/**
Destructor, destroying the choice item.
*/
~wxChoice();
virtual ~wxChoice();
//@{
/**
@@ -150,7 +150,7 @@ public:
@remarks This is implemented for GTK and Motif only and always
returns 1 for the other platforms.
*/
int GetColumns() const;
virtual int GetColumns() const;
/**
Unlike wxControlWithItems::GetSelection() which only returns the
@@ -164,7 +164,7 @@ public:
In older versions, wxControlWithItems::GetSelection() itself
behaved like this.
*/
int GetCurrentSelection() const;
virtual int GetCurrentSelection() const;
/**
Sets the number of columns in this choice item.
@@ -175,6 +175,6 @@ public:
@remarks This is implemented for GTK and Motif only and doesnt do
anything under other platforms.
*/
void SetColumns(int n = 1);
virtual void SetColumns(int n = 1);
};