X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e47d37d087f5a8410deb929a94378f415351694a..8516328f1bf774bbd96ce400945b0f06be93c397:/utils/dialoged/src/symbtabl.cpp diff --git a/utils/dialoged/src/symbtabl.cpp b/utils/dialoged/src/symbtabl.cpp index b82e0ccb37..110764e782 100644 --- a/utils/dialoged/src/symbtabl.cpp +++ b/utils/dialoged/src/symbtabl.cpp @@ -133,7 +133,7 @@ bool wxResourceSymbolTable::WriteIncludeFile(const wxString& filename) 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)) @@ -181,7 +181,7 @@ wxString wxResourceSymbolTable::GetSymbolForId(int id) 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); @@ -323,7 +323,7 @@ bool wxResourceSymbolTable::FillComboBox(wxComboBox* comboBox) wxNode* node = m_hashTable.Next(); while (node) { - char* str = node->key.string; + const char* str = node->GetKeyString(); comboBox->Append(str); node = m_hashTable.Next();