diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:54:39 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:54:39 +0900 |
commit | 88de09b6cc82c3c1592f1a71415cb962e39eb60b (patch) | |
tree | e2603a3f5cd63520f55e0461e3b06a988f17635c /lib/widgets/resizablecombo.cpp | |
parent | 942d671706374179f6dd95e1dc2b514634ea1c39 (diff) | |
download | tdevelop-88de09b6cc82c3c1592f1a71415cb962e39eb60b.tar.gz tdevelop-88de09b6cc82c3c1592f1a71415cb962e39eb60b.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib/widgets/resizablecombo.cpp')
-rw-r--r-- | lib/widgets/resizablecombo.cpp | 2 |
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(); } |