diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:33:17 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-05 10:33:17 +0900 |
commit | 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac (patch) | |
tree | 1d67fedde5ab6603080c8c786d55a1fcb44c45c4 /src/urlnavigator.cpp | |
parent | 71d014f5e8c8816163fdfdf63fb20e73cd1870e4 (diff) | |
download | dolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.tar.gz dolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/urlnavigator.cpp')
-rw-r--r-- | src/urlnavigator.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/urlnavigator.cpp b/src/urlnavigator.cpp index 8a3e05a..96edc9d 100644 --- a/src/urlnavigator.cpp +++ b/src/urlnavigator.cpp @@ -85,15 +85,15 @@ URLNavigator::URLNavigator(const KURL& url, m_toggleButton->setToggleButton(true); m_toggleButton->setFocusPolicy(TQWidget::NoFocus); m_toggleButton->setMinimumHeight(minimumHeight()); - connect(m_toggleButton, TQT_SIGNAL(clicked()), - this, TQT_SLOT(slotClicked())); + connect(m_toggleButton, TQ_SIGNAL(clicked()), + this, TQ_SLOT(slotClicked())); if (DolphinSettings::instance().isURLEditable()) { m_toggleButton->toggle(); } m_bookmarkSelector = new BookmarkSelector(this); - connect(m_bookmarkSelector, TQT_SIGNAL(bookmarkActivated(int)), - this, TQT_SLOT(slotBookmarkActivated(int))); + connect(m_bookmarkSelector, TQ_SIGNAL(bookmarkActivated(int)), + this, TQ_SLOT(slotBookmarkActivated(int))); m_pathBox = new KURLComboBox(KURLComboBox::Directories, true, this); @@ -101,13 +101,13 @@ URLNavigator::URLNavigator(const KURL& url, m_pathBox->setCompletionObject(kurlCompletion); m_pathBox->setAutoDeleteCompletionObject(true); - connect(m_pathBox, TQT_SIGNAL(returnPressed(const TQString&)), - this, TQT_SLOT(slotReturnPressed(const TQString&))); - connect(m_pathBox, TQT_SIGNAL(urlActivated(const KURL&)), - this, TQT_SLOT(slotURLActivated(const KURL&))); + connect(m_pathBox, TQ_SIGNAL(returnPressed(const TQString&)), + this, TQ_SLOT(slotReturnPressed(const TQString&))); + connect(m_pathBox, TQ_SIGNAL(urlActivated(const KURL&)), + this, TQ_SLOT(slotURLActivated(const KURL&))); - connect(dolphinView, TQT_SIGNAL(contentsMoved(int, int)), - this, TQT_SLOT(slotContentsMoved(int, int))); + connect(dolphinView, TQ_SIGNAL(contentsMoved(int, int)), + this, TQ_SLOT(slotContentsMoved(int, int))); updateContent(); } |