diff options
author | Michele Calgaro <[email protected]> | 2023-07-12 10:09:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-12 10:09:31 +0900 |
commit | f07dd2b54f701253bd03c34e4d8896ab912ea5cf (patch) | |
tree | 169e1af71482b365d2b2c45717b43343ca858951 /kicker-applets/mediacontrol/kscdInterface.cpp | |
parent | 900386ad4615a3dbbc04501ef24c5a43385c6078 (diff) | |
download | tdeaddons-f07dd2b54f701253bd03c34e4d8896ab912ea5cf.tar.gz tdeaddons-f07dd2b54f701253bd03c34e4d8896ab912ea5cf.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kicker-applets/mediacontrol/kscdInterface.cpp')
-rw-r--r-- | kicker-applets/mediacontrol/kscdInterface.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kicker-applets/mediacontrol/kscdInterface.cpp b/kicker-applets/mediacontrol/kscdInterface.cpp index 710674d..5b846c9 100644 --- a/kicker-applets/mediacontrol/kscdInterface.cpp +++ b/kicker-applets/mediacontrol/kscdInterface.cpp @@ -213,7 +213,7 @@ const TQString KsCDInterface::getTrackTitle() const replyType, replyData)) { TQDataStream reply(replyData, IO_ReadOnly); - if (replyType == TQSTRING_OBJECT_NAME_STRING) + if (replyType == "TQString") { reply >> title; } @@ -224,7 +224,7 @@ const TQString KsCDInterface::getTrackTitle() const replyType, replyData)) { TQDataStream reply(replyData, IO_ReadOnly); - if (replyType == TQSTRING_OBJECT_NAME_STRING) + if (replyType == "TQString") { reply >> album; } @@ -235,7 +235,7 @@ const TQString KsCDInterface::getTrackTitle() const replyType, replyData)) { TQDataStream reply(replyData, IO_ReadOnly); - if (replyType == TQSTRING_OBJECT_NAME_STRING) + if (replyType == "TQString") { reply >> artist; } |