diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-10 06:26:30 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-10 06:26:30 +0000 |
commit | 62f474f24066f1400ff57947480d012be1652c68 (patch) | |
tree | 83cdcc05217a91150a5dcba9de9bac4950cdc722 /bibletime/frontend/cprinter.h | |
parent | 75ebad37bc3cfdb65bb8542dd847683e883c8b55 (diff) | |
download | bibletime-62f474f24066f1400ff57947480d012be1652c68.tar.gz bibletime-62f474f24066f1400ff57947480d012be1652c68.zip |
Initial TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/bibletime@1173696 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'bibletime/frontend/cprinter.h')
-rw-r--r-- | bibletime/frontend/cprinter.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bibletime/frontend/cprinter.h b/bibletime/frontend/cprinter.h index fd28280..c65bb7e 100644 --- a/bibletime/frontend/cprinter.h +++ b/bibletime/frontend/cprinter.h @@ -20,7 +20,7 @@ #include "frontend/cbtconfig.h" //Qt includes -#include <qobject.h> +#include <tqobject.h> class KHTMLPart; @@ -31,11 +31,11 @@ namespace Printing { * * @author The BibleTime team */ -class CPrinter : public QObject, public Rendering::CDisplayRendering { +class CPrinter : public TQObject, public Rendering::CDisplayRendering { Q_OBJECT public: CPrinter( - QObject *parent, CSwordBackend::DisplayOptions displayOptions, CSwordBackend::FilterOptions filterOptions + TQObject *parent, CSwordBackend::DisplayOptions displayOptions, CSwordBackend::FilterOptions filterOptions ); virtual ~CPrinter(); @@ -43,9 +43,9 @@ public: void printKeyTree( KeyTree& ); protected: - virtual const QString entryLink(const KeyTreeItem& item, CSwordModuleInfo* const module); - virtual const QString renderEntry( const KeyTreeItem&, CSwordKey* = 0 ); - virtual const QString finishText(const QString& arg1, KeyTree& tree); + virtual const TQString entryLink(const KeyTreeItem& item, CSwordModuleInfo* const module); + virtual const TQString renderEntry( const KeyTreeItem&, CSwordKey* = 0 ); + virtual const TQString finishText(const TQString& arg1, KeyTree& tree); private: KHTMLPart* m_htmlPart; |