diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:48:01 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-18 12:11:32 +0900 |
commit | ca120c61e6281a9f8b89be860a7e975b5384bd07 (patch) | |
tree | a904f22a6811c51d7b9f5e50ee53a1ebe4fed04b /korn | |
parent | ddf896e8d22004797d141e221455cbdaa45b3f80 (diff) | |
download | tdepim-ca120c61e6281a9f8b89be860a7e975b5384bd07.tar.gz tdepim-ca120c61e6281a9f8b89be860a7e975b5384bd07.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'korn')
-rw-r--r-- | korn/kornaccountcfgimpl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korn/kornaccountcfgimpl.cpp b/korn/kornaccountcfgimpl.cpp index 7b57d1f68..a6193e2eb 100644 --- a/korn/kornaccountcfgimpl.cpp +++ b/korn/kornaccountcfgimpl.cpp @@ -205,14 +205,14 @@ void KornAccountCfgImpl::slotProtocolChanged( const TQString& proto ) grid->setMargin( 15 ); for( input = _accountinput->first(); input; input = _accountinput->next() ) { - if( input->leftWidget() && TQT_BASE_OBJECT(_groupBoxes->at( groupCounter )) == TQT_BASE_OBJECT(input->leftWidget()->parent()) ) + if( input->leftWidget() && _groupBoxes->at( groupCounter ) == input->leftWidget()->parent() ) { grid->addWidget( input->leftWidget(), counter, 0 ); - if( input->rightWidget() && TQT_BASE_OBJECT(_groupBoxes->at( groupCounter )) == TQT_BASE_OBJECT(input->rightWidget()->parent()) ) + if( input->rightWidget() && _groupBoxes->at( groupCounter ) == input->rightWidget()->parent() ) grid->addWidget( input->rightWidget(), counter, 1 ); ++counter; } else { - if( input->rightWidget() && TQT_BASE_OBJECT(_groupBoxes->at( groupCounter )) == TQT_BASE_OBJECT(input->rightWidget()->parent()) ) + if( input->rightWidget() && _groupBoxes->at( groupCounter ) == input->rightWidget()->parent() ) { grid->addWidget( input->rightWidget(), counter, 1 ); ++counter; |