diff options
author | Michele Calgaro <[email protected]> | 2023-07-11 21:37:39 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-11 21:37:39 +0900 |
commit | 439c716aab9200d6a24a2f2bdfda5e5812dcd3bc (patch) | |
tree | 8610b9affb2aca2422009ffbcf9e5c87ff6f505b /src/document/RosegardenGUIDoc.cpp | |
parent | a4bba7169c606df0a25321480fb28afb6040678d (diff) | |
download | rosegarden-439c716aab9200d6a24a2f2bdfda5e5812dcd3bc.tar.gz rosegarden-439c716aab9200d6a24a2f2bdfda5e5812dcd3bc.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 'src/document/RosegardenGUIDoc.cpp')
-rw-r--r-- | src/document/RosegardenGUIDoc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/document/RosegardenGUIDoc.cpp b/src/document/RosegardenGUIDoc.cpp index 397b12c..18c80d0 100644 --- a/src/document/RosegardenGUIDoc.cpp +++ b/src/document/RosegardenGUIDoc.cpp @@ -2923,7 +2923,7 @@ RosegardenGUIDoc::getTimers() return list; } - if (replyType != TQSTRING_OBJECT_NAME_STRING) { + if (replyType != "TQString") { RG_DEBUG << "RosegardenGUIDoc::getTimers - " << "wrong reply type (" << replyType << ") from sequencer" << endl; return list; @@ -2951,7 +2951,7 @@ RosegardenGUIDoc::getCurrentTimer() return ""; } - if (replyType != TQSTRING_OBJECT_NAME_STRING) { + if (replyType != "TQString") { RG_DEBUG << "RosegardenGUIDoc::getCurrentTimer - " << "wrong reply type (" << replyType << ") from sequencer" << endl; return ""; |