removing rtti special functions
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23028 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -69,8 +69,6 @@ public:
|
|||||||
virtual void Replace(long from, long to, const wxString& value);
|
virtual void Replace(long from, long to, const wxString& value);
|
||||||
virtual void Remove(long from, long to);
|
virtual void Remove(long from, long to);
|
||||||
virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
|
virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
|
||||||
// rtti needs a function with just one signature
|
|
||||||
void SetSelectionLine(int n) { SetSelection( n ) ; }
|
|
||||||
virtual void SetSelection(long from, long to);
|
virtual void SetSelection(long from, long to);
|
||||||
virtual void SetEditable(bool editable);
|
virtual void SetEditable(bool editable);
|
||||||
|
|
||||||
|
@@ -75,8 +75,6 @@ public:
|
|||||||
|
|
||||||
virtual bool IsSelected(int n) const;
|
virtual bool IsSelected(int n) const;
|
||||||
virtual void SetSelection(int n, bool select = TRUE);
|
virtual void SetSelection(int n, bool select = TRUE);
|
||||||
// rtti needs a function with just one signature
|
|
||||||
void SetSelectionLine(int n) { SetSelection( n ) ; }
|
|
||||||
virtual int GetSelection() const;
|
virtual int GetSelection() const;
|
||||||
virtual int GetSelections(wxArrayInt& aSelections) const;
|
virtual int GetSelections(wxArrayInt& aSelections) const;
|
||||||
|
|
||||||
|
@@ -61,7 +61,7 @@ WX_BEGIN_PROPERTIES_TABLE(wxComboBox)
|
|||||||
WX_PROPERTY( Font , wxFont , SetFont , GetFont , )
|
WX_PROPERTY( Font , wxFont , SetFont , GetFont , )
|
||||||
WX_PROPERTY_COLLECTION( Choices , wxArrayString , wxString , AppendString , GetStrings )
|
WX_PROPERTY_COLLECTION( Choices , wxArrayString , wxString , AppendString , GetStrings )
|
||||||
WX_PROPERTY( Value ,wxString, SetValue, GetValue, )
|
WX_PROPERTY( Value ,wxString, SetValue, GetValue, )
|
||||||
WX_PROPERTY( Selection ,int, SetSelectionLine, GetSelection, )
|
WX_PROPERTY( Selection ,int, SetSelection, GetSelection, )
|
||||||
WX_END_PROPERTIES_TABLE()
|
WX_END_PROPERTIES_TABLE()
|
||||||
|
|
||||||
WX_BEGIN_HANDLERS_TABLE(wxComboBox)
|
WX_BEGIN_HANDLERS_TABLE(wxComboBox)
|
||||||
|
@@ -54,7 +54,7 @@ WX_BEGIN_PROPERTIES_TABLE(wxListBox)
|
|||||||
// TODO DELEGATES
|
// TODO DELEGATES
|
||||||
WX_PROPERTY( Font , wxFont , SetFont , GetFont , )
|
WX_PROPERTY( Font , wxFont , SetFont , GetFont , )
|
||||||
WX_PROPERTY_COLLECTION( Choices , wxArrayString , wxString , AppendString , GetStrings )
|
WX_PROPERTY_COLLECTION( Choices , wxArrayString , wxString , AppendString , GetStrings )
|
||||||
WX_PROPERTY( Selection ,int, SetSelectionLine, GetSelection, )
|
WX_PROPERTY( Selection ,int, SetSelection, GetSelection, )
|
||||||
WX_END_PROPERTIES_TABLE()
|
WX_END_PROPERTIES_TABLE()
|
||||||
|
|
||||||
WX_BEGIN_HANDLERS_TABLE(wxListBox)
|
WX_BEGIN_HANDLERS_TABLE(wxListBox)
|
||||||
|
Reference in New Issue
Block a user