diff options
author | Michele Calgaro <[email protected]> | 2023-12-14 21:19:09 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-15 11:44:14 +0900 |
commit | 50245e3df9d78cdd42e9551fb32a3ea032434b0e (patch) | |
tree | fc0ca43d4b1e690730e54765a97263c0c25f290e /src/tag.cpp | |
parent | b70474e0dea4405c89c44d798dad759bd7e5d7a9 (diff) | |
download | basket-50245e3df9d78cdd42e9551fb32a3ea032434b0e.tar.gz basket-50245e3df9d78cdd42e9551fb32a3ea032434b0e.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 7b0920cd4180823f7a42350d1bdb914d697f4b9c)
Diffstat (limited to 'src/tag.cpp')
-rw-r--r-- | src/tag.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.cpp b/src/tag.cpp index c98cd87..73be5f8 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(), TQT_TQOBJECT(Global::bnpView), TQT_SLOT(activatedTagShortcut()), Global::bnpView->actionCollection(), sAction.utf8()); + m_action = new TDEAction("FAKE TEXT", "FAKE ICON", TDEShortcut(), Global::bnpView, TQT_SLOT(activatedTagShortcut()), Global::bnpView->actionCollection(), sAction.utf8()); m_action->setShortcutConfigurable(false); // We do it in the tag properties dialog m_inheritedBySiblings = false; |