summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-05-01 19:40:57 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2014-05-01 19:40:57 +1000
commit4f45ec19fc96e4471dc3fe342e5acd910068dd12 (patch)
tree8ed9474bc35047f8e8d6d5d792443b8e2b0f4cee /vcl
parent5b86e33b5fb5f8250b88bf14e579cddd98fec36a (diff)
VCL: sal_True -> true and sal_False -> false in outdev/text.cxx
Change-Id: I51e43962784dd21da4e9b2003c3b734026706282
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/outdev/text.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/outdev/text.cxx b/vcl/source/outdev/text.cxx
index 4383e5e92f38..bb9fbc1ed2d7 100644
--- a/vcl/source/outdev/text.cxx
+++ b/vcl/source/outdev/text.cxx
@@ -742,7 +742,7 @@ void OutputDevice::SetTextFillColor( const Color& rColor )
{
Color aColor( rColor );
- bool bTransFill = ImplIsColorTransparent( aColor ) ? sal_True : sal_False;
+ bool bTransFill = ImplIsColorTransparent( aColor ) ? true : false;
if ( !bTransFill )
{
@@ -1330,7 +1330,7 @@ bool OutputDevice::GetTextIsRTL( const OUString& rString, sal_Int32 nIndex, sal_
bool bRTL = false;
int nCharPos = -1;
aArgs.GetNextPos( &nCharPos, &bRTL );
- return (nCharPos != nIndex) ? sal_True : sal_False;
+ return (nCharPos != nIndex) ? true : false;
}
sal_Int32 OutputDevice::GetTextBreak( const OUString& rStr, long nTextWidth,