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/fileexporterdocbook5.h | |
parent | 251c9a439759c830d34c70683d0fc9454d703010 (diff) | |
download | kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip |
Initial TQt conversion
Diffstat (limited to 'src/fileexporterdocbook5.h')
-rw-r--r-- | src/fileexporterdocbook5.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/fileexporterdocbook5.h b/src/fileexporterdocbook5.h index 7b5f812..88742b5 100644 --- a/src/fileexporterdocbook5.h +++ b/src/fileexporterdocbook5.h @@ -31,21 +31,21 @@ namespace BibTeX class FileExporterDocBook5 : public FileExporterToolchain { public: - FileExporterDocBook5(const QString& classPath); + FileExporterDocBook5(const TQString& classPath); ~FileExporterDocBook5(); - bool save( QIODevice* iodevice, const File* bibtexfile, QStringList *errorLog = NULL ); - bool save( QIODevice* iodevice, const Element* element, QStringList *errorLog = NULL ); + bool save( TQIODevice* iodevice, const File* bibtexfile, TQStringList *errorLog = NULL ); + bool save( TQIODevice* iodevice, const Element* element, TQStringList *errorLog = NULL ); - void setLaTeXLanguage( const QString& language ); - void setLaTeXBibliographyStyle( const QString& bibStyle ); + void setLaTeXLanguage( const TQString& language ); + void setLaTeXBibliographyStyle( const TQString& bibStyle ); private: -QString m_classPath; - QString bibTeXFilename; - QString outputFilename; +TQString m_classPath; + TQString bibTeXFilename; + TQString outputFilename; - bool runBib2Db5( QIODevice* iodevice, QStringList *errorLog ); + bool runBib2Db5( TQIODevice* iodevice, TQStringList *errorLog ); }; |