summaryrefslogtreecommitdiffstats
path: root/src/fileimporter.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-06-29 12:56:53 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-04 03:11:35 +0200
commit5f5e7c5455d52826b0bd50f64fcffb7695ce970d (patch)
treec8ee8792d3fb139365abbf70c2255f1e69d2aa34 /src/fileimporter.h
parent251c9a439759c830d34c70683d0fc9454d703010 (diff)
downloadkbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz
kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip
Initial TQt conversion
Diffstat (limited to 'src/fileimporter.h')
-rw-r--r--src/fileimporter.h16
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;
};
}