summaryrefslogtreecommitdiff
path: root/svtools/source/brwbox/datwin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/brwbox/datwin.cxx')
-rw-r--r--svtools/source/brwbox/datwin.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/brwbox/datwin.cxx b/svtools/source/brwbox/datwin.cxx
index 1ed74e3bf5d3..77eed29b9917 100644
--- a/svtools/source/brwbox/datwin.cxx
+++ b/svtools/source/brwbox/datwin.cxx
@@ -47,7 +47,7 @@ void ButtonFrame::Draw( OutputDevice& rDev )
{
Window *pWin = (Window*) &rDev;
if( bPressed )
- pWin->DrawSelectionBackground( aRect, 0, sal_True, sal_False, sal_False );
+ pWin->DrawSelectionBackground( aRect, 0, true, false, false );
}
else
{
@@ -67,7 +67,7 @@ void ButtonFrame::Draw( OutputDevice& rDev )
sal_Bool bOldTransp = aFont.IsTransparent();
if ( !bOldTransp )
{
- aFont.SetTransparent( sal_True );
+ aFont.SetTransparent( true );
rDev.SetFont( aFont );
}
@@ -82,7 +82,7 @@ void ButtonFrame::Draw( OutputDevice& rDev )
// restore settings
if ( !bOldTransp )
{
- aFont.SetTransparent(sal_False);
+ aFont.SetTransparent(false);
rDev.SetFont( aFont );
}
if (m_bDrawDisabled)