summaryrefslogtreecommitdiffstats
path: root/src/tag.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:28:49 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:28:49 +0900
commitbea15ca3009c2f8505bfa10445c1dc2fc43a4ffe (patch)
tree8911427e76b2ea1dc7d98cf2a9a0f2da987802b5 /src/tag.cpp
parent7b0920cd4180823f7a42350d1bdb914d697f4b9c (diff)
downloadbasket-bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe.tar.gz
basket-bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tag.cpp')
-rw-r--r--src/tag.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.cpp b/src/tag.cpp
index 73be5f8..db0cbad 100644
--- a/src/tag.cpp
+++ b/src/tag.cpp
@@ -227,7 +227,7 @@ Tag::Tag()
static int tagNumber = 0;
++tagNumber;
TQString sAction = "tag_shortcut_number_" + TQString::number(tagNumber);
- m_action = new TDEAction("FAKE TEXT", "FAKE ICON", TDEShortcut(), Global::bnpView, TQT_SLOT(activatedTagShortcut()), Global::bnpView->actionCollection(), sAction.utf8());
+ m_action = new TDEAction("FAKE TEXT", "FAKE ICON", TDEShortcut(), Global::bnpView, TQ_SLOT(activatedTagShortcut()), Global::bnpView->actionCollection(), sAction.utf8());
m_action->setShortcutConfigurable(false); // We do it in the tag properties dialog
m_inheritedBySiblings = false;