if (tag.HasParam(wxT("SIZE"))) {
long tmp = 0;
- wxChar c = tag.GetParam(wxT("SIZE"))[0];
+ wxChar c = tag.GetParam(wxT("SIZE"))[(unsigned int) 0];
if (tag.ScanParam(wxT("SIZE"), wxT("%li"), &tmp) == 1) {
if (c == '+' || c == '-')
m_WParser -> SetFontSize(oldsize+tmp);
m_WParser -> SetFontUnderlined(FALSE);
m_WParser -> SetFontFixed(FALSE);
- if (tag.GetName() == "H1")
+ if (tag.GetName() == wxT("H1"))
m_WParser -> SetFontSize(7);
- else if (tag.GetName() == "H2")
+ else if (tag.GetName() == wxT("H2"))
m_WParser -> SetFontSize(6);
- else if (tag.GetName() == "H3")
+ else if (tag.GetName() == wxT("H3"))
m_WParser -> SetFontSize(5);
- else if (tag.GetName() == "H4") {
+ else if (tag.GetName() == wxT("H4")) {
m_WParser -> SetFontSize(5);
m_WParser -> SetFontItalic(TRUE);
m_WParser -> SetFontBold(FALSE);
}
- else if (tag.GetName() == "H5")
+ else if (tag.GetName() == wxT("H5"))
m_WParser -> SetFontSize(4);
- else if (tag.GetName() == "H6") {
+ else if (tag.GetName() == wxT("H6")) {
m_WParser -> SetFontSize(4);
m_WParser -> SetFontItalic(TRUE);
m_WParser -> SetFontBold(FALSE);