str.UngetWriteBuf();
// Look for #define occurrences
- size_t pos = str.Find("#define");
+ int pos = str.Find("#define");
while (pos != -1)
{
size_t len = str.Length();
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();