From 5f5e7c5455d52826b0bd50f64fcffb7695ce970d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 29 Jun 2013 12:56:53 +0200 Subject: Initial TQt conversion --- src/fileexporter.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/fileexporter.h') 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 -#include +#include +#include #include -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; }; } -- cgit v1.2.3