diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:50:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-04 09:50:47 +0900 |
commit | 612b41af2bb0590663f6488c00ebb3636f73ed8b (patch) | |
tree | b317b50b210a33eb6013ce50cb004f9d52ed017a /src/kbfxspinxmenu.cpp | |
parent | fce56fa71d1fcad9648d2c9376cd5709a508060a (diff) | |
download | kbfx-r14.1.1.tar.gz kbfx-r14.1.1.zip |
Replace TQ_*Focus* and TQ_Scale* definesr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 9119aa80e2361c34c3e03919f97262a068c4d5d8)
Diffstat (limited to 'src/kbfxspinxmenu.cpp')
-rw-r--r-- | src/kbfxspinxmenu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kbfxspinxmenu.cpp b/src/kbfxspinxmenu.cpp index 91f1eb3..4506da0 100644 --- a/src/kbfxspinxmenu.cpp +++ b/src/kbfxspinxmenu.cpp @@ -80,7 +80,7 @@ KbfxSpinxMenuWidget::init() m_search = new TQLineEdit ( this, "Search BOX" ); TQToolTip::add( m_search, tr2i18n( "Type here to search..." ) ); m_search->setFrameShape ( TQFrame::NoFrame ); - m_search->setFocusPolicy ( TQ_StrongFocus ); + m_search->setFocusPolicy ( TQWidget::StrongFocus ); m_search->move ( ConfigInit ().m_searchBox_x + m_searchTag->width (), ConfigInit ().m_searchBox_y ); m_search->resize ( ConfigInit ().m_searchBox_w - m_searchTag->width (), @@ -238,7 +238,7 @@ KbfxSpinxMenuWidget::createMask () rawimg = rawimg.smoothScale ( ConfigInit ().m_userMenuWidth, ConfigInit ().m_userMenuHeight, - TQ_ScaleFree ); + TQImage::ScaleFree ); maskpng.convertFromImage ( rawimg ); |