forgot to check in wxHtmlProcessor::IsEnabled test in wxHtmlWindow::SetPage

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10072 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-05-08 22:27:09 +00:00
parent badb78928f
commit 73348d0997

View File

@@ -160,12 +160,14 @@ bool wxHtmlWindow::SetPage(const wxString& source)
prG = (nodeG) ? nodeG->GetData()->GetPriority() : -1;
if (prL > prG)
{
newsrc = nodeL->GetData()->Process(newsrc);
if (nodeL->GetData()->IsEnabled())
newsrc = nodeL->GetData()->Process(newsrc);
nodeL = nodeL->GetNext();
}
else // prL <= prG
{
newsrc = nodeG->GetData()->Process(newsrc);
if (nodeG->GetData()->IsEnabled())
newsrc = nodeG->GetData()->Process(newsrc);
nodeG = nodeG->GetNext();
}
}