diff options
Diffstat (limited to 'src/rtf2html/rtf2html.h')
-rw-r--r-- | src/rtf2html/rtf2html.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rtf2html/rtf2html.h b/src/rtf2html/rtf2html.h index a4e1d2f..05e8eb1 100644 --- a/src/rtf2html/rtf2html.h +++ b/src/rtf2html/rtf2html.h @@ -11,18 +11,18 @@ * * ***************************************************************************/ -#include <qstring.h> +#include <tqstring.h> namespace Tellico { class RTF2HTML { public: - RTF2HTML(const QString& text); + RTF2HTML(const TQString& text); - QString toHTML() const; + TQString toHTML() const; private: - QString m_text; + TQString m_text; }; } |