X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..c8b87179830c714684bf6f0dd18648b2fb7725cc:/src/html/m_links.cpp diff --git a/src/html/m_links.cpp b/src/html/m_links.cpp index 809eda76af..434d01d55c 100644 --- a/src/html/m_links.cpp +++ b/src/html/m_links.cpp @@ -4,7 +4,7 @@ // Author: Vaclav Slavik // RCS-ID: $Id$ // Copyright: (c) 1999 Vaclav Slavik -// Licence: wxWidgets Licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) @@ -45,7 +45,7 @@ public: virtual const wxHtmlCell* Find(int condition, const void* param) const { - if ((condition == wxHTML_COND_ISANCHOR) && + if ((condition == wxHTML_COND_ISANCHOR) && (m_AnchorName == (*((const wxString*)param)))) { return this; @@ -81,7 +81,7 @@ TAG_HANDLER_BEGIN(A, "A") if (tag.HasParam( wxT("TARGET") )) target = tag.GetParam( wxT("TARGET") ); m_WParser->SetActualColor(m_WParser->GetLinkColor()); m_WParser->GetContainer()->InsertCell(new wxHtmlColourCell(m_WParser->GetLinkColor())); - m_WParser->SetFontUnderlined(TRUE); + m_WParser->SetFontUnderlined(true); m_WParser->GetContainer()->InsertCell(new wxHtmlFontCell(m_WParser->CreateCurrentFont())); m_WParser->SetLink(wxHtmlLinkInfo(name, target)); @@ -93,9 +93,9 @@ TAG_HANDLER_BEGIN(A, "A") m_WParser->SetActualColor(oldclr); m_WParser->GetContainer()->InsertCell(new wxHtmlColourCell(oldclr)); - return TRUE; + return true; } - else return FALSE; + else return false; } TAG_HANDLER_END(A)