diff options
Diffstat (limited to 'src/fileimporter.h')
-rw-r--r-- | src/fileimporter.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fileimporter.h b/src/fileimporter.h index 6dfdb2d..d99ade7 100644 --- a/src/fileimporter.h +++ b/src/fileimporter.h @@ -20,10 +20,10 @@ #ifndef BIBTEXFILEIMPORTER_H #define BIBTEXFILEIMPORTER_H -#include <qobject.h> -#include <qmutex.h> +#include <ntqobject.h> +#include <ntqmutex.h> -class QIODevice; +class TQIODevice; namespace BibTeX { @@ -32,17 +32,17 @@ namespace BibTeX /** @author Thomas Fischer */ - class FileImporter : public QObject + class FileImporter : public TQObject { Q_OBJECT public: FileImporter(); ~FileImporter(); - File* load( const QString& text ); - virtual File* load( QIODevice *iodevice ) = 0; + File* load( const TQString& text ); + virtual File* load( TQIODevice *iodevice ) = 0; - static bool guessCanDecode( const QString & ) + static bool guessCanDecode( const TQString & ) { return FALSE; }; @@ -58,7 +58,7 @@ namespace BibTeX }; protected: - QMutex m_mutex; + TQMutex m_mutex; }; } |