wxNode* node = m_hashTable.Next();
while (node)
{
- char* str = node->key.string;
+ const char* str = node->GetKeyString();
int id = (int) node->Data() ;
if (!IsStandardSymbol(str))
wxNode* node = m_hashTable.Next();
while (node)
{
- char* str = node->key.string;
+ const char* str = node->GetKeyString();
if (str && ( ((int) node->Data()) == id) )
return wxString(str);
wxNode* node = m_hashTable.Next();
while (node)
{
- char* str = node->key.string;
+ const char* str = node->GetKeyString();
comboBox->Append(str);
node = m_hashTable.Next();