diff options
author | Michele Calgaro <[email protected]> | 2023-08-09 17:17:58 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-09 17:17:58 +0900 |
commit | 67f2b0da2c80c3ee335aecda5dfedf3176edd8b9 (patch) | |
tree | 24062384f6f95b5407af0708c477cbfa4a39198e /libkonq/knewmenu.cpp | |
parent | 7bc43c68b3c095631628e1fb691242315687d15b (diff) | |
download | tdebase-67f2b0da2c80c3ee335aecda5dfedf3176edd8b9.tar.gz tdebase-67f2b0da2c80c3ee335aecda5dfedf3176edd8b9.zip |
Drop TQT_TQ*_CONST defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'libkonq/knewmenu.cpp')
-rw-r--r-- | libkonq/knewmenu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libkonq/knewmenu.cpp b/libkonq/knewmenu.cpp index 621b1f614..042bb4e92 100644 --- a/libkonq/knewmenu.cpp +++ b/libkonq/knewmenu.cpp @@ -368,11 +368,11 @@ void KNewMenu::slotNewDir() void KNewMenu::slotNewFile() { - int id = TQString( TQT_TQOBJECT_CONST(sender())->name() + 7 ).toInt(); // skip "newmenu" + int id = TQString( sender()->name() + 7 ).toInt(); // skip "newmenu" if (id == 0) { // run the command for the templates - KRun::runCommand(TQString(TQT_TQOBJECT_CONST(sender())->name())); + KRun::runCommand(TQString(sender()->name())); return; } |