summaryrefslogtreecommitdiff
path: root/vcl/source/app/svmain.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-05-11 00:06:16 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-05-11 00:47:52 +0900
commit8fa7b8234f5b5a0f30972a3ece939363fff4fdae (patch)
treec569d926c6d147dbc06aba5be2d96ea4b63c1982 /vcl/source/app/svmain.cxx
parent6ae4e72ec510e2dd0496d181ba429b1d51716667 (diff)
sal_Bool to bool
Change-Id: I7e69466f189b845a807edbf3ca4422b0fb2aec94
Diffstat (limited to 'vcl/source/app/svmain.cxx')
-rw-r--r--vcl/source/app/svmain.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx
index f7533fdb5f05..e6ac094f7b6d 100644
--- a/vcl/source/app/svmain.cxx
+++ b/vcl/source/app/svmain.cxx
@@ -153,7 +153,7 @@ int ImplSVMain()
int nReturn = EXIT_FAILURE;
- sal_Bool bInit = InitVCL();
+ bool bInit = InitVCL();
if( bInit )
{
@@ -239,12 +239,12 @@ uno::Any SAL_CALL DesktopEnvironmentContext::getValueByName( const OUString& Nam
return retVal;
}
-sal_Bool InitVCL()
+bool InitVCL()
{
RTL_LOGFILE_CONTEXT( aLog, "vcl (ss112471) ::InitVCL" );
if( pExceptionHandler != NULL )
- return sal_False;
+ return false;
EmbeddedFontsHelper::clearTemporaryFontFiles();
@@ -269,7 +269,7 @@ sal_Bool InitVCL()
RTL_LOGFILE_CONTEXT_TRACE( aLog, "{ ::CreateSalInstance" );
pSVData->mpDefInst = CreateSalInstance();
if ( !pSVData->mpDefInst )
- return sal_False;
+ return false;
RTL_LOGFILE_CONTEXT_TRACE( aLog, "} ::CreateSalInstance" );
// Desktop Environment context (to be able to get value of "system.desktop-environment" as soon as possible)
@@ -302,7 +302,7 @@ sal_Bool InitVCL()
// initialise debug data
DBGGUI_INIT();
- return sal_True;
+ return true;
}
#ifdef ANDROID