X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/42841dfcaddc6045ffc618acbb620b1fde1bc618..819f6fb9f01650b80f72462bd351be45122ef10e:/src/html/htmltag.cpp diff --git a/src/html/htmltag.cpp b/src/html/htmltag.cpp index 1b9b7bd784..c52656cc8c 100644 --- a/src/html/htmltag.cpp +++ b/src/html/htmltag.cpp @@ -392,7 +392,7 @@ bool wxHtmlTag::GetParamAsColour(const wxString& par, wxColour *clr) const { wxString str = GetParam(par); - if (str.IsEmpty()) return false; + if (str.empty()) return false; if (str.GetChar(0) == wxT('#')) { unsigned long tmp; @@ -495,4 +495,13 @@ wxHtmlTag *wxHtmlTag::GetNextTag() const return cur->m_Next; } +#if WXWIN_COMPATIBILITY_2_2 + +bool wxHtmlTag::IsEnding() const +{ + return false; +} + +#endif // WXWIN_COMPATIBILITY_2_2 + #endif