diff options
Diffstat (limited to 'kabc/vcardparser/vcard.cpp')
-rw-r--r-- | kabc/vcardparser/vcard.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kabc/vcardparser/vcard.cpp b/kabc/vcardparser/vcard.cpp index 410a958d1..30a8e1c49 100644 --- a/kabc/vcardparser/vcard.cpp +++ b/kabc/vcardparser/vcard.cpp @@ -50,7 +50,7 @@ void VCard::clear() mLineMap.clear(); } -QStringList VCard::identifiers() const +TQStringList VCard::identifiers() const { return mLineMap.keys(); } @@ -60,7 +60,7 @@ void VCard::addLine( const VCardLine& line ) mLineMap[ line.identifier() ].append( line ); } -VCardLine::List VCard::lines( const QString& identifier ) const +VCardLine::List VCard::lines( const TQString& identifier ) const { LineMap::ConstIterator it = mLineMap.find( identifier ); if ( it == mLineMap.end() ) @@ -69,7 +69,7 @@ VCardLine::List VCard::lines( const QString& identifier ) const return *it; } -VCardLine VCard::line( const QString& identifier ) const +VCardLine VCard::line( const TQString& identifier ) const { LineMap::ConstIterator it = mLineMap.find( identifier ); if ( it == mLineMap.end() ) |