summaryrefslogtreecommitdiffstats
path: root/src/fileexporterps.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/fileexporterps.h
parent251c9a439759c830d34c70683d0fc9454d703010 (diff)
downloadkbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz
kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip
Initial TQt conversion
Diffstat (limited to 'src/fileexporterps.h')
-rw-r--r--src/fileexporterps.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/fileexporterps.h b/src/fileexporterps.h
index b252fd7..0393e7e 100644
--- a/src/fileexporterps.h
+++ b/src/fileexporterps.h
@@ -22,7 +22,7 @@
#include <fileexportertoolchain.h>
-class QStringList;
+class TQStringList;
namespace BibTeX
{
@@ -36,21 +36,21 @@ namespace BibTeX
FileExporterPS();
~FileExporterPS();
- 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 laTeXFilename;
- QString bibTeXFilename;
- QString outputFilename;
- QString m_latexLanguage;
- QString m_latexBibStyle;
-
- bool generatePS( QIODevice* iodevice, QStringList *errorLog );
- bool writeLatexFile( const QString &filename );
+ TQString laTeXFilename;
+ TQString bibTeXFilename;
+ TQString outputFilename;
+ TQString m_latexLanguage;
+ TQString m_latexBibStyle;
+
+ bool generatePS( TQIODevice* iodevice, TQStringList *errorLog );
+ bool writeLatexFile( const TQString &filename );
};
}