summaryrefslogtreecommitdiff
path: root/basic/source/sbx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-08-22 19:20:19 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-08-22 19:25:08 +0900
commit407509c058c44182859e90a89a6ddb2b28edc053 (patch)
tree6e6108f4195eb28bf7ebad4db16e67ef5efd1b6a /basic/source/sbx
parent0c89907c8310db8c66a16efac05f0d749a4d1d15 (diff)
sal_Bool to bool
Change-Id: I75dd089b34c94831bfdfd0e02585af7609013a08
Diffstat (limited to 'basic/source/sbx')
-rw-r--r--basic/source/sbx/sbxvar.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxvar.cxx b/basic/source/sbx/sbxvar.cxx
index 72009368d19d..60e344840f42 100644
--- a/basic/source/sbx/sbxvar.cxx
+++ b/basic/source/sbx/sbxvar.cxx
@@ -369,7 +369,7 @@ void SbxVariable::SetParent( SbxObject* p )
if ( p && ISA(SbxObject) )
{
// then this had to be a child of the new parent
- sal_Bool bFound = sal_False;
+ bool bFound = false;
SbxArray *pChildren = p->GetObjects();
if ( pChildren )
{