summaryrefslogtreecommitdiff
path: root/vcl/source/window/btndlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/btndlg.cxx')
-rw-r--r--vcl/source/window/btndlg.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/source/window/btndlg.cxx b/vcl/source/window/btndlg.cxx
index af5bead656c2..9bc6a3eedccf 100644
--- a/vcl/source/window/btndlg.cxx
+++ b/vcl/source/window/btndlg.cxx
@@ -42,7 +42,7 @@ void ButtonDialog::ImplInitButtonDialogData()
mnButtonSize = 0;
mnCurButtonId = 0;
mnFocusButtonId = BUTTONDIALOG_BUTTON_NOTFOUND;
- mbFormat = sal_True;
+ mbFormat = true;
}
ButtonDialog::ButtonDialog( WindowType nType ) :
@@ -204,7 +204,7 @@ void ButtonDialog::ImplPosControls()
SetOutputSizePixel( aDlgSize );
- mbFormat = sal_False;
+ mbFormat = false;
}
IMPL_LINK( ButtonDialog, ImplClickHdl, PushButton*, pBtn )
@@ -285,7 +285,7 @@ void ButtonDialog::AddButton( const OUString& rText, sal_uInt16 nId,
if ( nBtnFlags & BUTTONDIALOG_FOCUSBUTTON )
mnFocusButtonId = nId;
- mbFormat = sal_True;
+ mbFormat = true;
}
void ButtonDialog::AddButton( StandardButtonType eType, sal_uInt16 nId,
@@ -318,7 +318,7 @@ void ButtonDialog::AddButton( StandardButtonType eType, sal_uInt16 nId,
maItemList.push_back(pItem);
- mbFormat = sal_True;
+ mbFormat = true;
}
void ButtonDialog::RemoveButton( sal_uInt16 nId )
@@ -353,7 +353,7 @@ void ButtonDialog::Clear()
}
maItemList.clear();
- mbFormat = sal_True;
+ mbFormat = true;
}
sal_uInt16 ButtonDialog::GetButtonId( sal_uInt16 nButton ) const
@@ -381,7 +381,7 @@ void ButtonDialog::SetButtonText( sal_uInt16 nId, const OUString& rText )
if ( pItem )
{
pItem->mpPushButton->SetText( rText );
- mbFormat = sal_True;
+ mbFormat = true;
}
}