projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
AddPage(), InsertPage() now return page ptr instead of index
[wxWidgets.git]
/
interface
/
wx
/
choice.h
diff --git
a/interface/wx/choice.h
b/interface/wx/choice.h
index 57e03c6dfc8640e71c012804564f1d9d97dfdfb8..0ad3fdbef2cf1e69ce1a9643f3fcbcbffcc54941 100644
(file)
--- a/
interface/wx/choice.h
+++ b/
interface/wx/choice.h
@@
-123,7
+123,7
@@
public:
/**
Destructor, destroying the choice item.
*/
/**
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.
*/
@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
/**
Unlike wxControlWithItems::GetSelection() which only returns the
@@
-164,7
+164,7
@@
public:
In older versions, wxControlWithItems::GetSelection() itself
behaved like this.
*/
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.
/**
Sets the number of columns in this choice item.
@@
-175,6
+175,6
@@
public:
@remarks This is implemented for GTK and Motif only and doesn’t do
anything under other platforms.
*/
@remarks This is implemented for GTK and Motif only and doesn’t do
anything under other platforms.
*/
- void SetColumns(int n = 1);
+ v
irtual v
oid SetColumns(int n = 1);
};
};