summaryrefslogtreecommitdiffstats
path: root/ksayit/src/parasaxparser.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:20:30 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:20:30 +0000
commit28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c (patch)
treea2f011f22aa31d0839c6e2118501b7a6d2f2ae96 /ksayit/src/parasaxparser.h
parent0285229d858c8f03cde7354c679a752598cf4515 (diff)
downloadtdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.tar.gz
tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1157633 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksayit/src/parasaxparser.h')
-rw-r--r--ksayit/src/parasaxparser.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ksayit/src/parasaxparser.h b/ksayit/src/parasaxparser.h
index e76d652..6f46156 100644
--- a/ksayit/src/parasaxparser.h
+++ b/ksayit/src/parasaxparser.h
@@ -13,8 +13,8 @@
#define PARASAXPARSER_H
// Qt includes
-#include <qxml.h>
-#include <qstring.h>
+#include <tqxml.h>
+#include <tqstring.h>
// App specific includes
#include "saxhandler.h"
@@ -39,27 +39,27 @@ public:
* info, e.g. to resolve entities defined in the internal DTD.
* \param data The header (preamble) of the DocBook document.
*/
- void setProcessingInstruction(const QString &data);
+ void setProcessingInstruction(const TQString &data);
/**
* This is the 'para' element to parse. It has to be encapsulated
* in <para> and </para>. Nested 'para' elements are not supported.
* \param data See description.
*/
- void setData(const QString &data);
+ void setData(const TQString &data);
/**
* Returns the pure text content of the paragraph without tags.
* \param data See description.
*/
- void getText(QString &data);
+ void getText(TQString &data);
/**
* Returns the text in RTF format, i.e. replaces DocBook tags
* with RTF tags.
* \param data See description.
*/
- void getRTFText(QString &data);
+ void getRTFText(TQString &data);
protected:
ParaSaxParser();
@@ -67,9 +67,9 @@ protected:
private:
static ParaSaxParser* _instance;
SaxHandler* m_handler;
- QXmlSimpleReader* m_reader;
- QString m_XmlInputHeader;
- QString m_XmlInputBody;
+ TQXmlSimpleReader* m_reader;
+ TQString m_XmlInputHeader;
+ TQString m_XmlInputBody;
};