diff options
Diffstat (limited to 'src/webquerypubmed.cpp')
-rw-r--r-- | src/webquerypubmed.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/webquerypubmed.cpp b/src/webquerypubmed.cpp index 902a0a1..fb6954b 100644 --- a/src/webquerypubmed.cpp +++ b/src/webquerypubmed.cpp @@ -148,7 +148,7 @@ namespace KBibTeX doc.setContent( &buffer ); TQDomElement docElem = doc.documentElement(); WebQueryPubMedResultParser resultParser; - connect( &resultParser, SIGNAL( foundEntry( BibTeX::Entry*, bool ) ), this, SIGNAL( foundEntry( BibTeX::Entry*, bool ) ) ); + connect( &resultParser, TQ_SIGNAL( foundEntry( BibTeX::Entry*, bool ) ), this, TQ_SIGNAL( foundEntry( BibTeX::Entry*, bool ) ) ); resultParser.parse( docElem ); buffer.close(); setEndSearch( WebQuery::statusSuccess ); @@ -189,7 +189,7 @@ namespace KBibTeX bool WebQueryPubMedStructureParserQuery::startElement( const TQString & /*namespaceURI*/, const TQString & /*localName*/, const TQString & /*qName*/, const TQXmlAttributes & /*atts*/ ) { concatString = TQString(); - return TRUE; + return true; } bool WebQueryPubMedStructureParserQuery::endElement( const TQString & /*namespaceURI*/, const TQString & /*localName*/, const TQString & qName ) @@ -202,13 +202,13 @@ namespace KBibTeX m_intList->append( id ); } - return TRUE; + return true; } bool WebQueryPubMedStructureParserQuery::characters( const TQString & ch ) { concatString.append( ch ); - return TRUE; + return true; } WebQueryPubMedResultParser::WebQueryPubMedResultParser( ) : TQObject() |