diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-09 18:25:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-09 18:28:31 +0900 |
commit | 766478630b5e0f435d8aef9ee7ba44651e4e431d (patch) | |
tree | f7051c2c461364796929ed39875262b434fe0f42 /src/k3bdiroperator.cpp | |
parent | b67830aae3b0bd8e8bfd2be1a7714dcb978ff59b (diff) | |
download | k3b-766478630b5e0f435d8aef9ee7ba44651e4e431d.tar.gz k3b-766478630b5e0f435d8aef9ee7ba44651e4e431d.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/k3bdiroperator.cpp')
-rw-r--r-- | src/k3bdiroperator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k3bdiroperator.cpp b/src/k3bdiroperator.cpp index e8e1bb9..b0f314f 100644 --- a/src/k3bdiroperator.cpp +++ b/src/k3bdiroperator.cpp @@ -49,11 +49,11 @@ K3bDirOperator::K3bDirOperator(const KURL& url, TQWidget* parent, const char* na bmMan->setUpdate( true ); bmMan->setShowNSBookmarks( false ); - m_bmPopup = new TDEActionMenu( i18n("Bookmarks"), "bookmark", TQT_TQOBJECT(this), "bookmarks" ); + m_bmPopup = new TDEActionMenu( i18n("Bookmarks"), "bookmark", this, "bookmarks" ); m_bmMenu = new KBookmarkMenu( bmMan, this, m_bmPopup->popupMenu(), actionCollection(), true ); (void)new TDEAction( i18n("&Add to Project"), SHIFT+Key_Return, - TQT_TQOBJECT(this), TQT_SLOT(slotAddFilesToProject()), + this, TQT_SLOT(slotAddFilesToProject()), actionCollection(), "add_file_to_project"); } |