X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/36c4ff4d6501712cbc718a6569599f2725db0d2c..7ea1c917764fb2588fe1aadc75c49ba300f8cb2f:/src/html/m_links.cpp diff --git a/src/html/m_links.cpp b/src/html/m_links.cpp index b1f0d0876f..4c5647c4cd 100644 --- a/src/html/m_links.cpp +++ b/src/html/m_links.cpp @@ -4,13 +4,9 @@ // Author: Vaclav Slavik // RCS-ID: $Id$ // Copyright: (c) 1999 Vaclav Slavik -// Licence: wxWindows Licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation -#endif - #include "wx/wxprec.h" #include "wx/defs.h" @@ -41,11 +37,11 @@ public: void Draw(wxDC& WXUNUSED(dc), int WXUNUSED(x), int WXUNUSED(y), int WXUNUSED(view_y1), int WXUNUSED(view_y2), - wxHtmlRenderingState& WXUNUSED(state)) {} + wxHtmlRenderingInfo& WXUNUSED(info)) {} 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; @@ -55,11 +51,14 @@ public: return wxHtmlCell::Find(condition, param); } } + + DECLARE_NO_COPY_CLASS(wxHtmlAnchorCell) }; TAG_HANDLER_BEGIN(A, "A") + TAG_HANDLER_CONSTR(A) { } TAG_HANDLER_PROC(tag) { @@ -78,7 +77,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)); @@ -90,9 +89,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)