remove unneeded vars

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27207 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2004-05-11 19:24:07 +00:00
parent 496e80e521
commit 19de24fe0c

View File

@@ -76,20 +76,14 @@ public:
// items may be checked // items may be checked
bool IsChecked(size_t uiIndex) const; bool IsChecked(size_t uiIndex) const;
void Check(size_t uiIndex, bool bCheck = TRUE); void Check(size_t uiIndex, bool bCheck = TRUE);
void OnChar(wxKeyEvent& event) ;
void OnLeftClick(wxMouseEvent& event) ;
// metrics
wxInt32 m_checkBoxWidth;
wxInt32 m_checkBoxHeight;
wxInt32 m_TextBaseLineOffset;
// the array containing the checked status of the items
wxArrayInt m_checks;
// override all methods which add/delete items to update m_checks array as // override all methods which add/delete items to update m_checks array as
// well // well
virtual void Delete(int n); virtual void Delete(int n);
// the array containing the checked status of the items
wxArrayInt m_checks;
protected: protected:
virtual int DoAppend(const wxString& item); virtual int DoAppend(const wxString& item);
virtual void DoInsertItems(const wxArrayString& items, int pos); virtual void DoInsertItems(const wxArrayString& items, int pos);
@@ -98,6 +92,7 @@ protected:
// common part of all ctors // common part of all ctors
void Init(); void Init();
private: private:
DECLARE_EVENT_TABLE() DECLARE_EVENT_TABLE()
}; };