diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:50:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-03 22:56:09 +0900 |
commit | 7b525ca12009d79fe90020690a4e7f0716dc97c2 (patch) | |
tree | d0561e6888afed3a1aef5058cc5a1c6348546f2f /lib/kofficeui/KoTooluButton.cpp | |
parent | c4525c81c3e7a2d7cc4c0afecc8bb5e217be9822 (diff) | |
download | koffice-7b525ca1.tar.gz koffice-7b525ca1.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 04e50e547f8ed2d6db996bc4816179fa962bd6b1)
Diffstat (limited to 'lib/kofficeui/KoTooluButton.cpp')
-rw-r--r-- | lib/kofficeui/KoTooluButton.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kofficeui/KoTooluButton.cpp b/lib/kofficeui/KoTooluButton.cpp index 4ede56d9c..3adcaca86 100644 --- a/lib/kofficeui/KoTooluButton.cpp +++ b/lib/kofficeui/KoTooluButton.cpp @@ -458,7 +458,7 @@ void KoColorPanel::finalizeInsertion( const Position& pos ) paint( pos ); if ( !isFocusEnabled() ) - setFocusPolicy( TQ_StrongFocus ); + setFocusPolicy( TQWidget::StrongFocus ); // Did we start a new row? if ( m_nextPosition.x == 1 ) updateGeometry(); @@ -599,7 +599,7 @@ void KoColorPanel::paint( const Position& position ) void KoColorPanel::init() { - setFocusPolicy( TQ_NoFocus ); // it's empty + setFocusPolicy( TQWidget::NoFocus ); // it's empty m_nextPosition.x = 0; m_nextPosition.y = 0; m_focusPosition.x = -1; |