diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-06-29 12:56:53 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-07-04 03:11:35 +0200 |
commit | 5f5e7c5455d52826b0bd50f64fcffb7695ce970d (patch) | |
tree | c8ee8792d3fb139365abbf70c2255f1e69d2aa34 /src/fileexporter.h | |
parent | 251c9a439759c830d34c70683d0fc9454d703010 (diff) | |
download | kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip |
Initial TQt conversion
Diffstat (limited to 'src/fileexporter.h')
-rw-r--r-- | src/fileexporter.h | 14 |
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; }; } |