X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/88343ddae94c7925a2ae884b76f6ac3246c23c48..76b0f8384ed211c5f6b48597a62da743b604e666:/src/html/htmlcell.cpp diff --git a/src/html/htmlcell.cpp b/src/html/htmlcell.cpp index 3d243b762f..9ae76f328e 100644 --- a/src/html/htmlcell.cpp +++ b/src/html/htmlcell.cpp @@ -2,7 +2,6 @@ // Name: src/html/htmlcell.cpp // Purpose: wxHtmlCell - basic element of HTML output // Author: Vaclav Slavik -// RCS-ID: $Id$ // Copyright: (c) 1999 Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -196,7 +195,17 @@ wxCursor wxHtmlCell::GetCursor() const } #endif // WXWIN_COMPATIBILITY_2_6 -wxCursor wxHtmlCell::GetMouseCursor(wxHtmlWindowInterface *window) const +wxCursor +wxHtmlCell::GetMouseCursor(wxHtmlWindowInterface* WXUNUSED(window)) const +{ + // This is never called directly, only from GetMouseCursorAt() and we + // return an invalid cursor by default to let it delegate to the window. + return wxNullCursor; +} + +wxCursor +wxHtmlCell::GetMouseCursorAt(wxHtmlWindowInterface *window, + const wxPoint& relPos) const { #if WXWIN_COMPATIBILITY_2_6 // NB: Older versions of wx used GetCursor() virtual method in place of @@ -209,7 +218,11 @@ wxCursor wxHtmlCell::GetMouseCursor(wxHtmlWindowInterface *window) const return cur; #endif // WXWIN_COMPATIBILITY_2_6 - if ( GetLink() ) + const wxCursor curCell = GetMouseCursor(window); + if ( curCell.IsOk() ) + return curCell; + + if ( GetLink(relPos.x, relPos.y) ) { return window->GetHTMLCursor(wxHtmlWindowInterface::HTMLCursor_Link); }