]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/choice.h
Don't include <CoreFoundation/CFBase.h> because it in turn includes MacTypes.h which...
[wxWidgets.git] / include / wx / os2 / choice.h
index b04aee3d72986584051e06269597eeedff2841ce..8054f2234422fe39a64df49439cd20cbfec36452 100644 (file)
@@ -22,7 +22,7 @@ class WXDLLEXPORT wxChoice: public wxChoiceBase
 
 public:
     // ctors
-    inline wxChoice() { Init(); }
+    inline wxChoice() { }
     virtual ~wxChoice();
 
     inline wxChoice( wxWindow*          pParent
@@ -36,7 +36,6 @@ public:
                     ,const wxString&    rsName = wxChoiceNameStr
                    )
     {
-        Init();
         Create( pParent
                ,vId
                ,rPos
@@ -59,7 +58,6 @@ public:
                     ,const wxString&      rsName = wxChoiceNameStr
                    )
     {
-        Init();
         Create( pParent
                ,vId
                ,rPos
@@ -100,7 +98,6 @@ public:
 
     virtual unsigned int GetCount() const;
     virtual int      GetSelection(void) const;
-    virtual int      GetCurrentSelection(void) const;
     virtual void     SetSelection(int n);
 
     virtual wxString GetString(unsigned int n) const;
@@ -118,9 +115,6 @@ public:
                                   );
 
 protected:
-    // common part of all ctors
-    void Init() { m_lastAcceptedSelection = wxID_NONE; }
-
     virtual int           DoAppend(const wxString& rsItem);
     virtual int           DoInsert(const wxString& rsItem, unsigned int pos);
     virtual void          DoSetItemClientData(unsigned int n, void* pClientData);
@@ -135,11 +129,6 @@ protected:
                                     ,int nsizeFlags = wxSIZE_AUTO
                                    );
     void                  Free(void);
-
-    // last "completed" selection, i.e. not the transient one while the user is
-    // browsing the popup list: this is only used when != wxID_NONE which is
-    // the case while the drop down is opened
-    int m_lastAcceptedSelection;
 }; // end of CLASS wxChoice
 
 #endif // _WX_CHOICE_H_