summaryrefslogtreecommitdiffstats
path: root/basctl/source/accessibility/accessibledialogwindow.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-08-01 10:05:20 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-08-01 10:06:16 +0900
commit088915c36ba207591a3d97e94bcf1a395bfa69ed (patch)
tree0c5fd77fddcdbc5b5c593467e24f96a86f2d54cd /basctl/source/accessibility/accessibledialogwindow.cxx
parentFix mingw build of svl (diff)
downloadcore-088915c36ba207591a3d97e94bcf1a395bfa69ed.tar.gz
core-088915c36ba207591a3d97e94bcf1a395bfa69ed.zip
sal_Bool -> bool
Change-Id: I82157e89d04eda35525c5a540504e6a8d18bc86c
Diffstat (limited to 'basctl/source/accessibility/accessibledialogwindow.cxx')
-rw-r--r--basctl/source/accessibility/accessibledialogwindow.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/accessibility/accessibledialogwindow.cxx b/basctl/source/accessibility/accessibledialogwindow.cxx
index 7a45247b7407..987dbc834798 100644
--- a/basctl/source/accessibility/accessibledialogwindow.cxx
+++ b/basctl/source/accessibility/accessibledialogwindow.cxx
@@ -214,9 +214,9 @@ void AccessibleDialogWindow::UpdateBounds()
// -----------------------------------------------------------------------------
-sal_Bool AccessibleDialogWindow::IsChildVisible( const ChildDescriptor& rDesc )
+bool AccessibleDialogWindow::IsChildVisible( const ChildDescriptor& rDesc )
{
- sal_Bool bVisible = sal_False;
+ bool bVisible = false;
if ( m_pDialogWindow )
{
@@ -250,7 +250,7 @@ sal_Bool AccessibleDialogWindow::IsChildVisible( const ChildDescriptor& rDesc )
// check, if the shape's bounding box intersects with the bounding box of its parent
Rectangle aParentRect( Point( 0, 0 ), m_pDialogWindow->GetSizePixel() );
if ( aParentRect.IsOver( aRect ) )
- bVisible = sal_True;
+ bVisible = true;
}
}
}