diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 09:35:28 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 09:35:28 +0900 |
commit | 3dceed1ea7a177db3aeda6eb106e8fcf7046fc16 (patch) | |
tree | e48aa6f6856c74737ce57f179a2c4e19f2255698 | |
parent | 7c26eb2c8bc7f0753601caae560fe2e591596a07 (diff) | |
download | katapult-3dceed1ea7a177db3aeda6eb106e8fcf7046fc16.tar.gz katapult-3dceed1ea7a177db3aeda6eb106e8fcf7046fc16.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | katapult/plugins/catalogs/amarokcatalog/amarokcatalog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/katapult/plugins/catalogs/amarokcatalog/amarokcatalog.cpp b/katapult/plugins/catalogs/amarokcatalog/amarokcatalog.cpp index 071a265..1e5c5e0 100644 --- a/katapult/plugins/catalogs/amarokcatalog/amarokcatalog.cpp +++ b/katapult/plugins/catalogs/amarokcatalog/amarokcatalog.cpp @@ -104,7 +104,7 @@ void AmarokCatalog::queryChanged() newStatus = 0; } else { TQDataStream reply(replyData, IO_ReadOnly); - if (replyType == TQSTRINGLIST_OBJECT_NAME_STRING) { + if (replyType == "TQStringList") { TQStringList sqlResult; reply >> sqlResult; @@ -179,7 +179,7 @@ void AmarokCatalog::queryChanged() newStatus = 0; } else { TQDataStream reply(replyData, IO_ReadOnly); - if (replyType == TQSTRINGLIST_OBJECT_NAME_STRING) { + if (replyType == "TQStringList") { TQStringList sqlResult; reply >> sqlResult; @@ -281,7 +281,7 @@ void AmarokCatalog::checkCollectionType() else { TQDataStream reply(replyData, IO_ReadOnly); - if (replyType == TQSTRINGLIST_OBJECT_NAME_STRING) + if (replyType == "TQStringList") { TQStringList sqlResult; reply >> sqlResult; |