projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d61c16
)
use size_t instead of unsigned int to avoid MSVC warnings about converting the former...
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Sun, 25 Nov 2007 14:28:54 +0000
(14:28 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Sun, 25 Nov 2007 14:28:54 +0000
(14:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50242
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
include/wx/arrstr.h
patch
|
blob
|
blame
|
history
diff --git
a/include/wx/arrstr.h
b/include/wx/arrstr.h
index a78d09e9dd4bb3d46d63d51a78445098dc5e72bf..55de7f04f00ba14be721262bd6105521b7349c89 100644
(file)
--- a/
include/wx/arrstr.h
+++ b/
include/wx/arrstr.h
@@
-404,7
+404,7
@@
public:
// default copy constructor is ok
// iteration interface
-
unsigned in
t GetCount() const { return m_size; }
+
size_
t GetCount() const { return m_size; }
bool IsEmpty() const { return GetCount() == 0; }
const wxString& operator[] (unsigned int i) const
{
@@
-429,7
+429,7
@@
private:
};
wxStringContainerType m_type;
-
unsigned in
t m_size;
+
size_
t m_size;
union
{
const wxString * ptr;