TeX2RTF compilation fixes after my last wxHashTable changes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27170 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -401,7 +401,7 @@ void WriteTexReferences(wxChar *filename)
|
||||
if (ostr.bad()) return;
|
||||
|
||||
TexReferences.BeginFind();
|
||||
wxNode *node = TexReferences.Next();
|
||||
wxHashTable::Node *node = TexReferences.Next();
|
||||
while (node)
|
||||
{
|
||||
Tex2RTFYield();
|
||||
@@ -1663,7 +1663,7 @@ void AddKeyWordForTopic(wxChar *topic, wxChar *entry, wxChar *filename)
|
||||
void ClearKeyWordTable(void)
|
||||
{
|
||||
TopicTable.BeginFind();
|
||||
wxNode *node = TopicTable.Next();
|
||||
wxHashTable::Node *node = TopicTable.Next();
|
||||
while (node)
|
||||
{
|
||||
TexTopic *texTopic = (TexTopic *)node->GetData();
|
||||
|
Reference in New Issue
Block a user