summaryrefslogtreecommitdiffstats
path: root/configdialog/kbfxconfigdlgtooltip.ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'configdialog/kbfxconfigdlgtooltip.ui.h')
-rw-r--r--configdialog/kbfxconfigdlgtooltip.ui.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/configdialog/kbfxconfigdlgtooltip.ui.h b/configdialog/kbfxconfigdlgtooltip.ui.h
index 4f55e80..d5891d0 100644
--- a/configdialog/kbfxconfigdlgtooltip.ui.h
+++ b/configdialog/kbfxconfigdlgtooltip.ui.h
@@ -22,14 +22,14 @@ void KbfxConfigDlgTooltip::KbfxTooltipAnimationButtonToggled ( bool )
{
KbfxTooltipAnimationButton->setText ( tr2i18n ( "Turn the animation 'OFF'" ) );
KbfxTooltipAnimationPixmapLabel->setPixmap ( img_on );
- ConfigInit().m_ToolTipAnimation = TRUE;
+ ConfigInit().m_ToolTipAnimation = true;
}
if ( KbfxTooltipAnimationButton->state() == 0 )
{
KbfxTooltipAnimationButton->setText ( tr2i18n ( "Turn the animation 'ON'" ) );
KbfxTooltipAnimationPixmapLabel->setPixmap ( img_off );
- ConfigInit().m_ToolTipAnimation = FALSE;
+ ConfigInit().m_ToolTipAnimation = false;
}
kdDebug() << "Tooltip animation state: "
@@ -52,14 +52,14 @@ void KbfxConfigDlgTooltip::KbfxTooltipOnButtonToggled ( bool )
{
KbfxTooltipOnButton->setText ( tr2i18n ( "Turn the tooltip 'OFF'" ) );
KbfxTooltipOnPixmapLabel->setPixmap ( img_on );
- ConfigInit().m_ToolTip = TRUE;
+ ConfigInit().m_ToolTip = true;
}
if ( KbfxTooltipOnButton->state() == 0 )
{
KbfxTooltipOnButton->setText ( tr2i18n ( "Turn the tooltip 'ON'" ) );
KbfxTooltipOnPixmapLabel->setPixmap ( img_off );
- ConfigInit().m_ToolTip = FALSE;
+ ConfigInit().m_ToolTip = false;
}
@@ -70,16 +70,16 @@ void KbfxConfigDlgTooltip::KbfxTooltipOnButtonToggled ( bool )
void KbfxConfigDlgTooltip::ChangeForm()
{
- if ( ConfigInit().m_ToolTip == TRUE && KbfxTooltipOnButton->state() == 0 )
+ if ( ConfigInit().m_ToolTip && KbfxTooltipOnButton->state() == 0 )
KbfxTooltipOnButton->toggle();
- if ( ConfigInit().m_ToolTip == FALSE && KbfxTooltipOnButton->state() == 2 )
+ if ( !ConfigInit().m_ToolTip && KbfxTooltipOnButton->state() == 2 )
KbfxTooltipOnButton->toggle();
- if ( ConfigInit().m_ToolTipAnimation == TRUE && KbfxTooltipAnimationButton->state() == 0 )
+ if ( ConfigInit().m_ToolTipAnimation && KbfxTooltipAnimationButton->state() == 0 )
KbfxTooltipAnimationButton->toggle();
- if ( ConfigInit().m_ToolTipAnimation == FALSE && KbfxTooltipAnimationButton->state() == 2 )
+ if ( !ConfigInit().m_ToolTipAnimation && KbfxTooltipAnimationButton->state() == 2 )
KbfxTooltipAnimationButton->toggle();
KbfxTooltipTextEdit->setText ( ConfigInit().m_ToolTipText );