summaryrefslogtreecommitdiffstats
path: root/src/translators/exporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translators/exporter.h')
-rw-r--r--src/translators/exporter.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/translators/exporter.h b/src/translators/exporter.h
index 2ffc13b..3085609 100644
--- a/src/translators/exporter.h
+++ b/src/translators/exporter.h
@@ -16,15 +16,15 @@
class KConfig;
-class QWidget;
-class QString;
+class TQWidget;
+class TQString;
#include "../entry.h"
#include "../datavectors.h"
#include <kurl.h>
-#include <qobject.h>
+#include <tqobject.h>
namespace Tellico {
namespace Export {
@@ -43,8 +43,9 @@ namespace Tellico {
/**
* @author Robby Stephenson
*/
-class Exporter : public QObject {
+class Exporter : public TQObject {
Q_OBJECT
+ TQ_OBJECT
public:
Exporter();
@@ -57,8 +58,8 @@ public:
void setEntries(const Data::EntryVec& entries) { m_entries = entries; }
void setOptions(long options) { m_options = options; reset(); }
- virtual QString formatString() const = 0;
- virtual QString fileFilter() const = 0;
+ virtual TQString formatString() const = 0;
+ virtual TQString fileFilter() const = 0;
const KURL& url() const { return m_url; }
const Data::EntryVec& entries() const { return m_entries; }
long options() const { return m_options; }
@@ -73,7 +74,7 @@ public:
*/
virtual void reset() {}
- virtual QWidget* widget(QWidget* parent, const char* name=0) = 0;
+ virtual TQWidget* widget(TQWidget* tqparent, const char* name=0) = 0;
virtual void readOptions(KConfig*) {}
virtual void saveOptions(KConfig*) {}