diff options
Diffstat (limited to 'src/rtf2html/rtf2html.cpp')
-rw-r--r-- | src/rtf2html/rtf2html.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rtf2html/rtf2html.cpp b/src/rtf2html/rtf2html.cpp index 4f29fe7..e6e8b34 100644 --- a/src/rtf2html/rtf2html.cpp +++ b/src/rtf2html/rtf2html.cpp @@ -29,11 +29,11 @@ using Tellico::RTF2HTML; using namespace rtf; -RTF2HTML::RTF2HTML(const QString& text) : m_text(text) { +RTF2HTML::RTF2HTML(const TQString& text) : m_text(text) { } -QString RTF2HTML::toHTML() const { - std::string str_in = m_text; +TQString RTF2HTML::toHTML() const { + std::string str_in = m_text.ascii(); std::string::iterator buf_in=str_in.begin(), buf_in_end=str_in.end(); colorvect colortbl; |