src[pos] != wxT('>') && !wxIsspace(src[pos]);
i++, pos++ )
{
- tagBuffer[i] = wxToupper(src[pos]);
+ tagBuffer[i] = (wxChar)wxToupper(src[pos]);
}
tagBuffer[i] = _T('\0');
{
wxString str = GetParam(par);
- if (str.IsEmpty()) return false;
+ if (str.empty()) return false;
if (str.GetChar(0) == wxT('#'))
{
unsigned long tmp;
return cur->m_Next;
}
+#if WXWIN_COMPATIBILITY_2_2
+
+bool wxHtmlTag::IsEnding() const
+{
+ return false;
+}
+
+#endif // WXWIN_COMPATIBILITY_2_2
+
#endif