diff options
author | Slávek Banko <[email protected]> | 2013-06-29 12:56:53 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-07-04 03:11:35 +0200 |
commit | 5f5e7c5455d52826b0bd50f64fcffb7695ce970d (patch) | |
tree | c8ee8792d3fb139365abbf70c2255f1e69d2aa34 /src/fileexportertoolchain.h | |
parent | 251c9a439759c830d34c70683d0fc9454d703010 (diff) | |
download | kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip |
Initial TQt conversion
Diffstat (limited to 'src/fileexportertoolchain.h')
-rw-r--r-- | src/fileexportertoolchain.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/fileexportertoolchain.h b/src/fileexportertoolchain.h index 76000a1..7ea4cfb 100644 --- a/src/fileexportertoolchain.h +++ b/src/fileexportertoolchain.h @@ -22,10 +22,10 @@ #include <fileexporter.h> -class QString; -class QWaitCondition; -class QProcess; -class QStringList; +class TQString; +class TQWaitCondition; +class TQProcess; +class TQStringList; namespace BibTeX { @@ -44,20 +44,20 @@ namespace BibTeX void cancel(); protected: - QString workingDir; + TQString workingDir; - bool runProcesses( const QStringList &progs, QStringList *errorLog = NULL ); - bool runProcess( const QStringList &args, QStringList *errorLog = NULL ); - bool writeFileToIODevice( const QString &filename, QIODevice *device ); - bool kpsewhich( const QString& filename ); + bool runProcesses( const TQStringList &progs, TQStringList *errorLog = NULL ); + bool runProcess( const TQStringList &args, TQStringList *errorLog = NULL ); + bool writeFileToIODevice( const TQString &filename, TQIODevice *device ); + bool kpsewhich( const TQString& filename ); private: - QWaitCondition *m_waitCond; - QProcess *m_process; - QStringList *m_errorLog; + TQWaitCondition *m_waitCond; + TQProcess *m_process; + TQStringList *m_errorLog; - QString createTempDir(); - void deleteTempDir( const QString& directory ); + TQString createTempDir(); + void deleteTempDir( const TQString& directory ); private slots: void slotProcessExited(); |