projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fill in flags parameter of HitTest() for all book controls; added new wxNB_HITTEST_ON...
[wxWidgets.git]
/
include
/
wx
/
univ
/
checklst.h
diff --git
a/include/wx/univ/checklst.h
b/include/wx/univ/checklst.h
index d9a5b32a0a5eccf4156ebcb479330e0e717352a8..619ab94038f1adfea26f178ae4a522b0e9423223 100644
(file)
--- a/
include/wx/univ/checklst.h
+++ b/
include/wx/univ/checklst.h
@@
-12,10
+12,6
@@
#ifndef _WX_UNIV_CHECKLST_H_
#define _WX_UNIV_CHECKLST_H_
#ifndef _WX_UNIV_CHECKLST_H_
#define _WX_UNIV_CHECKLST_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma interface "univchecklst.h"
-#endif
-
// ----------------------------------------------------------------------------
// actions
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// actions
// ----------------------------------------------------------------------------
@@
-74,8
+70,8
@@
public:
const wxString& name = wxListBoxNameStr);
// implement check list box methods
const wxString& name = wxListBoxNameStr);
// implement check list box methods
- virtual bool IsChecked(
size_
t item) const;
- virtual void Check(
size_t item, bool check = TRUE
);
+ virtual bool IsChecked(
unsigned in
t item) const;
+ virtual void Check(
unsigned int item, bool check = true
);
// and input handling
virtual bool PerformAction(const wxControlAction& action,
// and input handling
virtual bool PerformAction(const wxControlAction& action,
@@
-84,11
+80,11
@@
public:
// override all methods which add/delete items to update m_checks array as
// well
// override all methods which add/delete items to update m_checks array as
// well
- virtual void Delete(int n);
+ virtual void Delete(
unsigned
int n);
protected:
virtual int DoAppend(const wxString& item);
protected:
virtual int DoAppend(const wxString& item);
- virtual void DoInsertItems(const wxArrayString& items, int pos);
+ virtual void DoInsertItems(const wxArrayString& items,
unsigned
int pos);
virtual void DoSetItems(const wxArrayString& items, void **clientData);
virtual void DoClear();
virtual void DoSetItems(const wxArrayString& items, void **clientData);
virtual void DoClear();
@@
-126,4
+122,3
@@
public:
};
#endif // _WX_UNIV_CHECKLST_H_
};
#endif // _WX_UNIV_CHECKLST_H_
-