diff options
author | Michele Calgaro <[email protected]> | 2023-09-02 15:50:40 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-02 15:50:40 +0900 |
commit | 8e316244abe01c719e630ab4c8120e38aa81cef9 (patch) | |
tree | 73f5423c52271b973771f1e98343294a5f2b1c10 /src/urlnavigator.cpp | |
parent | 128fc6c0f1e35322eb71db3f2a79f360dc767844 (diff) | |
download | dolphin-8e316244abe01c719e630ab4c8120e38aa81cef9.tar.gz dolphin-8e316244abe01c719e630ab4c8120e38aa81cef9.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/urlnavigator.cpp')
-rw-r--r-- | src/urlnavigator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/urlnavigator.cpp b/src/urlnavigator.cpp index 725c062..225ab70 100644 --- a/src/urlnavigator.cpp +++ b/src/urlnavigator.cpp @@ -83,7 +83,7 @@ URLNavigator::URLNavigator(const KURL& url, m_toggleButton = new TQPushButton(SmallIcon("editurl"), 0, this); m_toggleButton->setFlat(true); m_toggleButton->setToggleButton(true); - m_toggleButton->setFocusPolicy(TQ_NoFocus); + m_toggleButton->setFocusPolicy(TQWidget::NoFocus); m_toggleButton->setMinimumHeight(minimumHeight()); connect(m_toggleButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotClicked())); |