diff options
author | Michele Calgaro <[email protected]> | 2023-08-12 18:44:58 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-14 19:19:14 +0900 |
commit | a1596e697ad016e3982a903bda9aa8590276291f (patch) | |
tree | fad7c8e78a35378343c76caa3117c4dca83df077 /configdialog/kbfxconfigdlgabout.ui.h | |
parent | 7df544d76ecb5b2badb028c0ed8f3816e464d60e (diff) | |
download | kbfx-a1596e697ad016e3982a903bda9aa8590276291f.tar.gz kbfx-a1596e697ad016e3982a903bda9aa8590276291f.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'configdialog/kbfxconfigdlgabout.ui.h')
-rw-r--r-- | configdialog/kbfxconfigdlgabout.ui.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configdialog/kbfxconfigdlgabout.ui.h b/configdialog/kbfxconfigdlgabout.ui.h index d85ce1a..1ee1a23 100644 --- a/configdialog/kbfxconfigdlgabout.ui.h +++ b/configdialog/kbfxconfigdlgabout.ui.h @@ -82,42 +82,42 @@ bool KbfxConfigDlgAbout::eventFilter ( TQObject *obj, TQEvent *ev ) if ( ev->type() == TQEvent::FocusIn || ev->type() == TQEvent::Enter ) { - if ( TQT_BASE_OBJECT(obj) == TQT_BASE_OBJECT(KbfxPixmapLabelNookie) ) + if ( obj == KbfxPixmapLabelNookie ) { KbfxTeamInfo->setText ( KbfxMemberTextNookie ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelNookie->setFrameShape ( TQFrame::WinPanel ); return TRUE; } - else if ( TQT_BASE_OBJECT(obj) == TQT_BASE_OBJECT(KbfxPixmapLabelSiraj) ) + else if ( obj == KbfxPixmapLabelSiraj ) { KbfxTeamInfo->setText ( KbfxMemberTextSiraj ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelSiraj->setFrameShape ( TQFrame::WinPanel ); return TRUE; } - else if ( TQT_BASE_OBJECT(obj) == TQT_BASE_OBJECT(KbfxPixmapLabelNathanael) ) + else if ( obj == KbfxPixmapLabelNathanael ) { KbfxTeamInfo->setText ( KbfxMemberTextNathanael ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelNathanael->setFrameShape ( TQFrame::WinPanel ); return TRUE; } - else if ( TQT_BASE_OBJECT(obj) == TQT_BASE_OBJECT(KbfxPixmapLabelPhobosK) ) + else if ( obj == KbfxPixmapLabelPhobosK ) { KbfxTeamInfo->setText ( KbfxMemberTextPhobosK ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelPhobosK->setFrameShape ( TQFrame::WinPanel ); return TRUE; } - else if ( TQT_BASE_OBJECT(obj) == TQT_BASE_OBJECT(KbfxPixmapLabelJohnny) ) + else if ( obj == KbfxPixmapLabelJohnny ) { KbfxTeamInfo->setText ( KbfxMemberTextJohnny ); KbfxUnmarkAllPixmaps(); KbfxPixmapLabelJohnny->setFrameShape ( TQFrame::WinPanel ); return TRUE; } - else if ( TQT_BASE_OBJECT(obj) == TQT_BASE_OBJECT(KbfxPixmapLabelEphracis) ) + else if ( obj == KbfxPixmapLabelEphracis ) { KbfxTeamInfo->setText ( KbfxMemberTextEphracis ); KbfxUnmarkAllPixmaps(); |