summaryrefslogtreecommitdiffstats
path: root/lib/widgets/resizablecombo.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-02 15:54:39 +0900
committerMichele Calgaro <[email protected]>2023-09-04 10:31:12 +0900
commite8e8e54254ec3786edbbc149be5a7a7109e6541d (patch)
tree6684b76c8005878e39139bc706e1653cbf311fb9 /lib/widgets/resizablecombo.cpp
parentda6192de80b02052d30576401e06deb228ad84e6 (diff)
downloadtdevelop-e8e8e54254ec3786edbbc149be5a7a7109e6541d.tar.gz
tdevelop-e8e8e54254ec3786edbbc149be5a7a7109e6541d.zip
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 88de09b6cc82c3c1592f1a71415cb962e39eb60b)
Diffstat (limited to 'lib/widgets/resizablecombo.cpp')
-rw-r--r--lib/widgets/resizablecombo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/widgets/resizablecombo.cpp b/lib/widgets/resizablecombo.cpp
index ef96e724..c1dd08a3 100644
--- a/lib/widgets/resizablecombo.cpp
+++ b/lib/widgets/resizablecombo.cpp
@@ -89,7 +89,7 @@ void MyPushButton::mouseMoveEvent( TQMouseEvent * e )
MyPushButton::MyPushButton( ResizableCombo * parent, const char * name )
:TQPushButton(parent, name), m_resizing(false), m_combo(parent)
{
- setFocusPolicy(TQ_NoFocus);
+ setFocusPolicy(TQWidget::NoFocus);
setFlat(true);
m_width = m_combo->m_combo->width();
}