summaryrefslogtreecommitdiffstats
path: root/src/fileexporterbibutils.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/fileexporterbibutils.h
parent251c9a439759c830d34c70683d0fc9454d703010 (diff)
downloadkbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz
kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip
Initial TQt conversion
Diffstat (limited to 'src/fileexporterbibutils.h')
-rw-r--r--src/fileexporterbibutils.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/fileexporterbibutils.h b/src/fileexporterbibutils.h
index 978a92d..fafefd6 100644
--- a/src/fileexporterbibutils.h
+++ b/src/fileexporterbibutils.h
@@ -22,8 +22,8 @@
#include <fileexporter.h>
-class QProcess;
-class QBuffer;
+class TQProcess;
+class TQBuffer;
namespace BibTeX
{
@@ -39,8 +39,8 @@ namespace BibTeX
FileExporterBibUtils( BibTeX::File::FileFormat outputFormat );
~FileExporterBibUtils();
- bool save( QIODevice* iodevice, const Element* element, QStringList* errorLog = NULL );
- bool save( QIODevice* iodevice, const File* bibtexfile, QStringList* errorLog = NULL );
+ bool save( TQIODevice* iodevice, const Element* element, TQStringList* errorLog = NULL );
+ bool save( TQIODevice* iodevice, const File* bibtexfile, TQStringList* errorLog = NULL );
public slots:
void cancel();
@@ -51,13 +51,13 @@ namespace BibTeX
FileExporterBibTeX *m_bibTeXExporter;
bool m_waiting;
- QProcess *m_process;
- QBuffer *m_processBuffer;
+ TQProcess *m_process;
+ TQBuffer *m_processBuffer;
- bool toBuffer( const File *bibFile, QBuffer *buffer, QStringList* errorLog);
- bool toBuffer( const Element *bibFile, QBuffer *buffer, QStringList* errorLog);
- bool bufferToXMLbuffer( QBuffer *buffer );
- bool xmlBufferToIOdevice( QIODevice *iodevice );
+ bool toBuffer( const File *bibFile, TQBuffer *buffer, TQStringList* errorLog);
+ bool toBuffer( const Element *bibFile, TQBuffer *buffer, TQStringList* errorLog);
+ bool bufferToXMLbuffer( TQBuffer *buffer );
+ bool xmlBufferToIOdevice( TQIODevice *iodevice );
private slots:
void wakeUp();