diff options
author | Slávek Banko <[email protected]> | 2022-03-17 09:54:21 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2022-03-20 18:50:15 +0100 |
commit | a553069ad068dcab541282df24dbe12591153af8 (patch) | |
tree | 6e0b3fc71e22d976fe434da0deab1a1fe0117476 /kmymoney2/dialogs/investactivities.cpp | |
parent | febacdee5bf580932e1937f656b475762b48acd6 (diff) | |
download | kmymoney-a553069ad068dcab541282df24dbe12591153af8.tar.gz kmymoney-a553069ad068dcab541282df24dbe12591153af8.zip |
Replace the use of the old API TQString::data().
The definition of -UTQT_NO_COMPAT is no longer needed.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit eeae53f59df4d79d0399c2217a165ff2fab754db)
Diffstat (limited to 'kmymoney2/dialogs/investactivities.cpp')
-rw-r--r-- | kmymoney2/dialogs/investactivities.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kmymoney2/dialogs/investactivities.cpp b/kmymoney2/dialogs/investactivities.cpp index 2c348dd..d9bd7ca 100644 --- a/kmymoney2/dialogs/investactivities.cpp +++ b/kmymoney2/dialogs/investactivities.cpp @@ -159,7 +159,7 @@ void Activity::setLabelText(const TQString& idx, const TQString& txt) const if(w) { w->setText(txt); } else { - tqDebug("Unknown TQLabel named '%s'", idx.data()); + tqDebug(TQString("Unknown TQLabel named '%1'").arg(idx)); } } |