summaryrefslogtreecommitdiffstats
path: root/libkcddb/lookup.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-24 10:56:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-24 10:56:06 +0900
commit1304109bee51323c2fb7258df91b2d4eccd83030 (patch)
tree1b582285fd2ce3f94ff1dfaba430d5aaa21eb977 /libkcddb/lookup.cpp
parentcf9759fa992775e54adc65e127ead1989821cd54 (diff)
downloadtdemultimedia-1304109bee51323c2fb7258df91b2d4eccd83030.tar.gz
tdemultimedia-1304109bee51323c2fb7258df91b2d4eccd83030.zip
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libkcddb/lookup.cpp')
-rw-r--r--libkcddb/lookup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libkcddb/lookup.cpp b/libkcddb/lookup.cpp
index c1a767fc..38f5a694 100644
--- a/libkcddb/lookup.cpp
+++ b/libkcddb/lookup.cpp
@@ -43,7 +43,7 @@ namespace KCDDB
if ( 200 == serverStatus )
{
TQStringList tokenList = TQStringList::split( ' ', line );
- matchList_.append( tqMakePair( tokenList[ 1 ], tokenList[ 2 ] ) );
+ matchList_.append( qMakePair( tokenList[ 1 ], tokenList[ 2 ] ) );
return Success;
}
else if ( ( 211 == serverStatus ) || ( 210 == serverStatus ) )
@@ -62,7 +62,7 @@ namespace KCDDB
Lookup::parseExtraMatch( const TQString & line )
{
TQStringList tokenList = TQStringList::split( ' ', line );
- matchList_.append( tqMakePair( tokenList[ 0 ], tokenList[ 1 ] ) );
+ matchList_.append( qMakePair( tokenList[ 0 ], tokenList[ 1 ] ) );
}
CDDB::Result