diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:54:01 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-04 10:33:10 +0900 |
commit | 91d0481e3bd0d37fa1a746b117fe04fff8221164 (patch) | |
tree | 07b9c448d5a66a07bd1ee71bd838373044c3d3a5 /libtdepim/completionordereditor.cpp | |
parent | c5f2c57c55beb8d9ac2b5596bb7d75601ed9d2af (diff) | |
download | tdepim-91d0481e3bd0d37fa1a746b117fe04fff8221164.tar.gz tdepim-91d0481e3bd0d37fa1a746b117fe04fff8221164.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 84129a6fadb049acceb743bd6cf1dea0c513522a)
Diffstat (limited to 'libtdepim/completionordereditor.cpp')
-rw-r--r-- | libtdepim/completionordereditor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtdepim/completionordereditor.cpp b/libtdepim/completionordereditor.cpp index bc6f8839a..152790c7e 100644 --- a/libtdepim/completionordereditor.cpp +++ b/libtdepim/completionordereditor.cpp @@ -225,12 +225,12 @@ CompletionOrderEditor::CompletionOrderEditor( KPIM::LdapSearch* ldapSearch, mUpButton = new KPushButton( upDownBox, "mUpButton" ); mUpButton->setIconSet( BarIconSet( "go-up", TDEIcon::SizeSmall ) ); mUpButton->setEnabled( false ); // b/c no item is selected yet - mUpButton->setFocusPolicy( TQ_StrongFocus ); + mUpButton->setFocusPolicy( TQWidget::StrongFocus ); mDownButton = new KPushButton( upDownBox, "mDownButton" ); mDownButton->setIconSet( BarIconSet( "go-down", TDEIcon::SizeSmall ) ); mDownButton->setEnabled( false ); // b/c no item is selected yet - mDownButton->setFocusPolicy( TQ_StrongFocus ); + mDownButton->setFocusPolicy( TQWidget::StrongFocus ); TQWidget* spacer = new TQWidget( upDownBox ); upDownBox->setStretchFactor( spacer, 100 ); |