summaryrefslogtreecommitdiff
path: root/basic/source/runtime
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-28 20:03:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-28 20:26:30 +0100
commitf96f38f8f8d711ca3606a6ab2bbebcf8d830ffa6 (patch)
treedbde8b23ff1c66dbc0a253294cf285f251eefefa /basic/source/runtime
parentfc320c41b599e54238bfdee6f96ab8de159f1d7b (diff)
bool improvements
Change-Id: I571354540f1ab108c55d32c20786d34a799c3bed
Diffstat (limited to 'basic/source/runtime')
-rw-r--r--basic/source/runtime/methods.cxx4
-rw-r--r--basic/source/runtime/sbdiagnose.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index efa3ea9d8c6b..aeb5000d68ac 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -2818,7 +2818,7 @@ bool isRootDir( OUString aDirURLStr )
// or Windows "file:///c:/" -> root
else if( nCount == 1 )
{
- OUString aSeg1 = aDirURLObj.getName( 0, sal_True,
+ OUString aSeg1 = aDirURLObj.getName( 0, true,
INetURLObject::DECODE_WITH_CHARSET );
if( aSeg1[1] == (sal_Unicode)':' )
{
@@ -2985,7 +2985,7 @@ RTLFUNC(Dir)
}
INetURLObject aURL( aFile );
- aPath = aURL.getName( INetURLObject::LAST_SEGMENT, sal_True,
+ aPath = aURL.getName( INetURLObject::LAST_SEGMENT, true,
INetURLObject::DECODE_WITH_CHARSET );
}
diff --git a/basic/source/runtime/sbdiagnose.cxx b/basic/source/runtime/sbdiagnose.cxx
index c06bc8fefede..e29d3db07918 100644
--- a/basic/source/runtime/sbdiagnose.cxx
+++ b/basic/source/runtime/sbdiagnose.cxx
@@ -115,7 +115,7 @@ RTLFUNC(CaptureAssertions)
// ensure OSL assertions are captured, too
DbgData aData( *DbgGetData() );
- aData.bHookOSLAssert = sal_True;
+ aData.bHookOSLAssert = true;
DbgUpdateOslHook( &aData );
}