diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 12:35:55 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 12:35:55 +0900 |
| commit | 278778f1151c2c3b4fade15afc7b94f624900b60 (patch) | |
| tree | 3e5556534dce8216383a1026da88bfaef179ecc7 /src/fileexporterps.cpp | |
| parent | 15710da5567c0dcf1291d09cb869ef1bf6d08541 (diff) | |
| download | kbibtex-278778f1151c2c3b4fade15afc7b94f624900b60.tar.gz kbibtex-278778f1151c2c3b4fade15afc7b94f624900b60.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/fileexporterps.cpp')
| -rw-r--r-- | src/fileexporterps.cpp | 12 |
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; } |
