summaryrefslogtreecommitdiffstats
path: root/src/fileexporterpdf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fileexporterpdf.h')
-rw-r--r--src/fileexporterpdf.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/fileexporterpdf.h b/src/fileexporterpdf.h
index 5641921..0d67350 100644
--- a/src/fileexporterpdf.h
+++ b/src/fileexporterpdf.h
@@ -34,25 +34,25 @@ namespace BibTeX
FileExporterPDF( bool embedFiles = FALSE );
~FileExporterPDF();
- 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 setDocumentSearchPaths( const QStringList& searchPaths );
+ void setLaTeXLanguage( const TQString& language );
+ void setLaTeXBibliographyStyle( const TQString& bibStyle );
+ void setDocumentSearchPaths( const TQStringList& searchPaths );
private:
- QString laTeXFilename;
- QString bibTeXFilename;
- QString outputFilename;
- QString m_latexLanguage;
- QString m_latexBibStyle;
+ TQString laTeXFilename;
+ TQString bibTeXFilename;
+ TQString outputFilename;
+ TQString m_latexLanguage;
+ TQString m_latexBibStyle;
bool m_embedFiles;
- QStringList m_embeddedFileList;
- QStringList m_searchPaths;
+ TQStringList m_embeddedFileList;
+ TQStringList m_searchPaths;
- bool generatePDF( QIODevice* iodevice, QStringList *errorLog );
- bool writeLatexFile( const QString &filename );
+ bool generatePDF( TQIODevice* iodevice, TQStringList *errorLog );
+ bool writeLatexFile( const TQString &filename );
void fillEmbeddedFileList( const File* bibtexfile );
void fillEmbeddedFileList( const Element* element );
};