diff options
Diffstat (limited to 'src/webquerycsb.cpp')
-rw-r--r-- | src/webquerycsb.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/webquerycsb.cpp b/src/webquerycsb.cpp index d2306e2..a37b159 100644 --- a/src/webquerycsb.cpp +++ b/src/webquerycsb.cpp @@ -155,8 +155,8 @@ namespace KBibTeX WebQueryCSB::WebQueryCSB( TQWidget* parent ): WebQuery( parent ) { - m_importer = new BibTeX::FileImporterBibTeX( FALSE ); - m_importer->setIgnoreComments( TRUE ); + m_importer = new BibTeX::FileImporterBibTeX( false ); + m_importer->setIgnoreComments( true ); m_widget = new WebQueryCSBWidget( parent ); } @@ -241,8 +241,8 @@ namespace KBibTeX TQRegExp removeXML( "<[^>]+>" ); rawText.replace( removeXML, "" ); - BibTeX::FileImporterBibTeX importer( FALSE ); - importer.setIgnoreComments( TRUE ); + BibTeX::FileImporterBibTeX importer( false ); + importer.setIgnoreComments( true ); TQBuffer buffer; buffer.open( IO_WriteOnly ); |