summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/basides3.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-07-27 10:35:28 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-07-27 10:38:11 +0900
commit992e5296d76b42212e6ef674bd3f4ac5cb6828d5 (patch)
tree965c393a5392b456ec2144936223d818305b5bfa /basctl/source/basicide/basides3.cxx
parent261f56fa90796686709f5ae7de3fba96121c0709 (diff)
sal_Bool -> bool
Change-Id: I97618ffb138f292665edb634a29c39ab5a332ab1
Diffstat (limited to 'basctl/source/basicide/basides3.cxx')
-rw-r--r--basctl/source/basicide/basides3.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/basides3.cxx b/basctl/source/basicide/basides3.cxx
index 61ef6bab4b8d..b4a784900ebc 100644
--- a/basctl/source/basicide/basides3.cxx
+++ b/basctl/source/basicide/basides3.cxx
@@ -59,7 +59,7 @@ DialogWindow* BasicIDEShell::CreateDlgWin( const ScriptDocument& rDocument, cons
aDlgName = rDocument.createObjectName( E_DIALOGS, aLibName );
// maybe there's a suspended one?
- pWin = FindDlgWin( rDocument, aLibName, aDlgName, sal_False, sal_True );
+ pWin = FindDlgWin( rDocument, aLibName, aDlgName, false, true );
if ( !pWin )
{
@@ -108,14 +108,14 @@ DialogWindow* BasicIDEShell::CreateDlgWin( const ScriptDocument& rDocument, cons
pTabBar->InsertPage( (sal_uInt16)nKey, aDlgName );
pTabBar->Sort();
if ( !pCurWin )
- SetCurWindow( pWin, sal_False, sal_False );
+ SetCurWindow( pWin, false, false );
}
bCreatingWindow = sal_False;
return pWin;
}
-DialogWindow* BasicIDEShell::FindDlgWin( const ScriptDocument& rDocument, const ::rtl::OUString& rLibName, const ::rtl::OUString& rDlgName, sal_Bool bCreateIfNotExist, sal_Bool bFindSuspended )
+DialogWindow* BasicIDEShell::FindDlgWin( const ScriptDocument& rDocument, const ::rtl::OUString& rLibName, const ::rtl::OUString& rDlgName, bool bCreateIfNotExist, bool bFindSuspended )
{
DialogWindow* pDlgWin = 0;
for( IDEWindowTable::const_iterator it = aIDEWindowTable.begin(); it != aIDEWindowTable.end(); ++it )