summaryrefslogtreecommitdiffstats
path: root/src/fileimporterexternal.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/fileimporterexternal.h
parent251c9a439759c830d34c70683d0fc9454d703010 (diff)
downloadkbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz
kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip
Initial TQt conversion
Diffstat (limited to 'src/fileimporterexternal.h')
-rw-r--r--src/fileimporterexternal.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fileimporterexternal.h b/src/fileimporterexternal.h
index 423ee45..e9de4a5 100644
--- a/src/fileimporterexternal.h
+++ b/src/fileimporterexternal.h
@@ -24,8 +24,8 @@
#include <file.h>
#include <settings.h>
-class QWaitCondition;
-class QProcess;
+class TQWaitCondition;
+class TQProcess;
namespace BibTeX
{
@@ -42,9 +42,9 @@ namespace BibTeX
FileImporterExternal( Importer importer, File::FileFormat fileformat );
~FileImporterExternal();
- File* load( QIODevice *iodevice );
+ File* load( TQIODevice *iodevice );
// FIXME: this is a stub:
- static bool guessCanDecode( const QString & )
+ static bool guessCanDecode( const TQString & )
{
return TRUE;
};
@@ -53,13 +53,13 @@ namespace BibTeX
void cancel();
private:
- QWaitCondition *wc;
- QProcess *process;
- QTextStream *writeTo;
+ TQWaitCondition *wc;
+ TQProcess *process;
+ TQTextStream *writeTo;
Importer m_importer;
File::FileFormat m_fileformat;
- bool fetchInput( QIODevice *input, QBuffer &output );
+ bool fetchInput( TQIODevice *input, TQBuffer &output );
private slots:
void slotProcessExited();