summaryrefslogtreecommitdiffstats
path: root/src/fileexporterps.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fileexporterps.cpp')
-rw-r--r--src/fileexporterps.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fileexporterps.cpp b/src/fileexporterps.cpp
index b808288..04e0997 100644
--- a/src/fileexporterps.cpp
+++ b/src/fileexporterps.cpp
@@ -44,7 +44,7 @@ namespace BibTeX
bool FileExporterPS::save( TQIODevice* iodevice, const File* bibtexfile, TQStringList *errorLog )
{
m_mutex.lock();
- bool result = FALSE;
+ bool result = false;
TQFile bibtexFile( bibTeXFilename );
if ( bibtexFile.open( IO_WriteOnly ) )
@@ -65,7 +65,7 @@ namespace BibTeX
bool FileExporterPS::save( TQIODevice* iodevice, const Element* element, TQStringList *errorLog )
{
m_mutex.lock();
- bool result = FALSE;
+ bool result = false;
TQFile bibtexFile( bibTeXFilename );
if ( bibtexFile.open( IO_WriteOnly ) )
@@ -98,9 +98,9 @@ namespace BibTeX
TQStringList cmdLines = TQStringList::split( '|', "latex -halt-on-error bibtex-to-ps.tex|bibtex bibtex-to-ps|latex -halt-on-error bibtex-to-ps.tex|latex -halt-on-error bibtex-to-ps.tex|dvips -o bibtex-to-ps.ps bibtex-to-ps.dvi" );
if ( writeLatexFile( laTeXFilename ) && runProcesses( cmdLines, errorLog ) && writeFileToIODevice( outputFilename, iodevice ) )
- return TRUE;
+ return true;
else
- return FALSE;
+ return false;
}
bool FileExporterPS::writeLatexFile( const TQString &filename )
@@ -125,10 +125,10 @@ namespace BibTeX
ts << "\\bibliography{bibtex-to-ps}\n";
ts << "\\end{document}\n";
latexFile.close();
- return TRUE;
+ return true;
}
else
- return FALSE;
+ return false;
}