summaryrefslogtreecommitdiffstats
path: root/configdialog/kbfxconfigdlgbutton.ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'configdialog/kbfxconfigdlgbutton.ui.h')
-rw-r--r--configdialog/kbfxconfigdlgbutton.ui.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/configdialog/kbfxconfigdlgbutton.ui.h b/configdialog/kbfxconfigdlgbutton.ui.h
index 563456c..0160cd4 100644
--- a/configdialog/kbfxconfigdlgbutton.ui.h
+++ b/configdialog/kbfxconfigdlgbutton.ui.h
@@ -125,12 +125,12 @@ void KbfxConfigDlgButton::ChangeForm()
KbfxButtonToggled ( 1 );
if ( ConfigInit().m_fadeTime == 0 )
- KbfxFadeButton->setChecked ( FALSE );
+ KbfxFadeButton->setChecked ( false );
else
- KbfxFadeButton->setChecked ( TRUE );
- if ( ConfigInit().m_ToolBarResize == TRUE && KbfxResizeKicker->state() == 0 )
+ KbfxFadeButton->setChecked ( true );
+ if ( ConfigInit().m_ToolBarResize && KbfxResizeKicker->state() == 0 )
KbfxResizeKicker->toggle();
- if ( ConfigInit().m_ToolBarResize == FALSE && KbfxResizeKicker->state() == 2 )
+ if ( !ConfigInit().m_ToolBarResize && KbfxResizeKicker->state() == 2 )
KbfxResizeKicker->toggle();
KbfxFadeTime->setText ( TQString::number ( ConfigInit().m_fadeTime ) );
@@ -142,13 +142,13 @@ void KbfxConfigDlgButton::KbfxResizeKickerToggled ( bool )
if ( KbfxResizeKicker->state() == 2 )
{
KbfxResizeKicker->setText ( tr2i18n ( "Panel Resize is 'ON'" ) );
- ConfigInit().m_ToolBarResize = TRUE;
+ ConfigInit().m_ToolBarResize = true;
}
if ( KbfxResizeKicker->state() == 0 )
{
KbfxResizeKicker->setText ( tr2i18n ( "Panel Resize is 'OFF'" ) );
- ConfigInit().m_ToolBarResize = FALSE;
+ ConfigInit().m_ToolBarResize = false;
}
kdDebug() << "Panel Resize is: "