projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
don't merge msw/it.po with wxstd.pot during 'make allmo', it's manually maintained
[wxWidgets.git]
/
src
/
common
/
hashmap.cpp
diff --git
a/src/common/hashmap.cpp
b/src/common/hashmap.cpp
index de00f58cab7b72eb7cb5ac1bf662b144f0a56b32..e3742aed7c0755c4d7cc6356d2c81bdb0c728c54 100644
(file)
--- a/
src/common/hashmap.cpp
+++ b/
src/common/hashmap.cpp
@@
-103,7
+103,7
@@
void _wxHashTableBase2::DeleteNodes( size_t buckets,
while( node )
{
while( node )
{
- tmp = node->m_nxt;
+ tmp = node->m_n
e
xt;
dtor( node );
node = tmp;
}
dtor( node );
node = tmp;
}
@@
-126,9
+126,9
@@
void _wxHashTableBase2::CopyHashTable( _wxHashTable_NodeBase** srcTable,
{
size_t bucket = func( dst, node );
{
size_t bucket = func( dst, node );
- nextnode = node->m_nxt;
+ nextnode = node->m_n
e
xt;
_wxHashTable_NodeBase* newnode = proc( node );
_wxHashTable_NodeBase* newnode = proc( node );
- newnode->m_nxt = dstTable[bucket];
+ newnode->m_n
e
xt = dstTable[bucket];
dstTable[bucket] = newnode;
}
}
dstTable[bucket] = newnode;
}
}