summaryrefslogtreecommitdiffstats
path: root/src/translators/onixexporter.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-02 06:40:27 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-02 06:40:27 +0000
commit2595a15ebeb6fc46b7cb241d01ec0c2460ec2111 (patch)
tree18a8f0f4ac5a86dacfa74c3537551ec39bc85e75 /src/translators/onixexporter.h
parent1d90725a4001fab9d3922b2cbcceeee5e2d1686f (diff)
downloadtellico-2595a15ebeb6fc46b7cb241d01ec0c2460ec2111.tar.gz
tellico-2595a15ebeb6fc46b7cb241d01ec0c2460ec2111.zip
TQt4 port tellico
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1239054 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/translators/onixexporter.h')
-rw-r--r--src/translators/onixexporter.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/translators/onixexporter.h b/src/translators/onixexporter.h
index 19d52dd..fd947ae 100644
--- a/src/translators/onixexporter.h
+++ b/src/translators/onixexporter.h
@@ -14,7 +14,7 @@
#ifndef ONIXEXPORTER_H
#define ONIXEXPORTER_H
-class QCheckBox;
+class TQCheckBox;
#include "exporter.h"
@@ -30,6 +30,7 @@ namespace Tellico {
*/
class ONIXExporter : public Exporter {
Q_OBJECT
+ TQ_OBJECT
public:
ONIXExporter();
@@ -37,22 +38,22 @@ public:
~ONIXExporter();
virtual bool exec();
- virtual QString formatString() const;
- virtual QString fileFilter() const;
+ virtual TQString formatString() const;
+ virtual TQString fileFilter() const;
- virtual QWidget* widget(QWidget*, const char* name=0);
+ virtual TQWidget* widget(TQWidget*, const char* name=0);
virtual void readOptions(KConfig*);
virtual void saveOptions(KConfig*);
- QString text();
+ TQString text();
private:
XSLTHandler* m_handler;
- QString m_xsltFile;
+ TQString m_xsltFile;
bool m_includeImages;
- QWidget* m_widget;
- QCheckBox* m_checkIncludeImages;
+ TQWidget* m_widget;
+ TQCheckBox* m_checkIncludeImages;
};
} // end namespace