- size_t len = wxStrlen(temp);
- for (size_t j = 0; j < len; j++)
- if (temp[j] == nbsp)
- temp[j] = wxT(' ');
- c = new wxHtmlWordCell(temp, *(GetDC()));
- if (m_UseLink)
- c->SetLink(m_Link);
- m_Container->InsertCell(c);
- ((wxHtmlWordCell*)c)->SetPreviousWord(m_lastWordCell);
- m_lastWordCell = (wxHtmlWordCell*)c;
- m_tmpLastWasSpace = false;