summaryrefslogtreecommitdiffstats
path: root/src/fileexporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fileexporter.h')
-rw-r--r--src/fileexporter.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/fileexporter.h b/src/fileexporter.h
index cc60ac0..834310f 100644
--- a/src/fileexporter.h
+++ b/src/fileexporter.h
@@ -20,12 +20,12 @@
#ifndef BIBTEXFILEEXPORTER_H
#define BIBTEXFILEEXPORTER_H
-#include <qobject.h>
-#include <qmutex.h>
+#include <ntqobject.h>
+#include <ntqmutex.h>
#include <file.h>
-class QIODevice;
+class TQIODevice;
namespace BibTeX
{
@@ -35,15 +35,15 @@ namespace BibTeX
/**
@author Thomas Fischer
*/
- class FileExporter : public QObject
+ class FileExporter : public TQObject
{
Q_OBJECT
public:
FileExporter();
~FileExporter();
- virtual bool save( QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = NULL ) = 0;
- virtual bool save( QIODevice *iodevice, const Element* element, QStringList *errorLog = NULL ) = 0;
+ virtual bool save( TQIODevice *iodevice, const File *bibtexfile, TQStringList *errorLog = NULL ) = 0;
+ virtual bool save( TQIODevice *iodevice, const Element* element, TQStringList *errorLog = NULL ) = 0;
signals:
void progress( int current, int total );
@@ -55,7 +55,7 @@ namespace BibTeX
};
protected:
- QMutex m_mutex;
+ TQMutex m_mutex;
};
}