projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Docview mended (grrr) and OGL studio partially working under wxGTK
[wxWidgets.git]
/
src
/
common
/
dynarray.cpp
diff --git
a/src/common/dynarray.cpp
b/src/common/dynarray.cpp
index 5abc4b1f5c25b721193a66f73355064da3aba8cf..bbf54265c431b7eb1d996e0b5a9e224e001a773d 100644
(file)
--- a/
src/common/dynarray.cpp
+++ b/
src/common/dynarray.cpp
@@
-17,14
+17,14
@@
#pragma implementation "dynarray.h"
#endif
#pragma implementation "dynarray.h"
#endif
-#include
<wx/wxprec.h>
+#include
"wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#include "wx/dynarray.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#include "wx/dynarray.h"
-#include
<wx/intl.h>
+#include
"wx/intl.h"
#include <stdlib.h>
#include <string.h> // for memmove
#include <stdlib.h>
#include <string.h> // for memmove
@@
-250,7
+250,7
@@
void wxBaseArray::Add(long lItem, CMPFUNC fnCompare)
// add item at the given position
void wxBaseArray::Insert(long lItem, size_t nIndex)
{
// add item at the given position
void wxBaseArray::Insert(long lItem, size_t nIndex)
{
- wxCHECK_RET( nIndex <= m_nCount, T("bad index in wxArray::Insert") );
+ wxCHECK_RET( nIndex <= m_nCount,
wx
T("bad index in wxArray::Insert") );
Grow();
Grow();
@@
-261,9
+261,9
@@
void wxBaseArray::Insert(long lItem, size_t nIndex)
}
// removes item from array (by index)
}
// removes item from array (by index)
-void wxBaseArray::Remove(size_t nIndex)
+void wxBaseArray::Remove
At
(size_t nIndex)
{
{
- wxCHECK_RET( nIndex <= m_nCount,
T("bad index in wxArray::Remove
") );
+ wxCHECK_RET( nIndex <= m_nCount,
wxT("bad index in wxArray::RemoveAt
") );
memmove(&m_pItems[nIndex], &m_pItems[nIndex + 1],
(m_nCount - nIndex - 1)*sizeof(long));
memmove(&m_pItems[nIndex], &m_pItems[nIndex + 1],
(m_nCount - nIndex - 1)*sizeof(long));
@@
-276,9
+276,9
@@
void wxBaseArray::Remove(long lItem)
int iIndex = Index(lItem);
wxCHECK_RET( iIndex != wxNOT_FOUND,
int iIndex = Index(lItem);
wxCHECK_RET( iIndex != wxNOT_FOUND,
- T("removing inexistent item in wxArray::Remove") );
+
wx
T("removing inexistent item in wxArray::Remove") );
- Remove((size_t)iIndex);
+ Remove
At
((size_t)iIndex);
}
// sort array elements using passed comparaison function
}
// sort array elements using passed comparaison function