GetCurrentSelection() was documented but not present in all ports (just MSW and GTK); moved it to the base classes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-10-30 16:04:27 +00:00
parent 4614c8e528
commit c63312c472
8 changed files with 22 additions and 7 deletions

View File

@@ -40,6 +40,13 @@ public:
// all generic methods are in wxControlWithItems
// get the current selection: this can only be different from the normal
// selection if the popup items list is currently opened and the user
// selected some item in it but didn't close the list yet; otherwise (and
// currently always on platforms other than MSW) this is the same as
// GetSelection()
virtual int GetCurrentSelection() const { return GetSelection(); }
// set/get the number of columns in the control (as they're not supported on
// most platforms, they do nothing by default)
virtual void SetColumns(int WXUNUSED(n) = 1 ) { }
@@ -78,5 +85,4 @@ private:
#endif // wxUSE_CHOICE
#endif
// _WX_CHOICE_H_BASE_
#endif // _WX_CHOICE_H_BASE_