diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 19:59:13 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:19 +0100 |
commit | c1d37365c42a0627a66310c46d4beb2337633654 (patch) | |
tree | 5eccb263b481a3112c8d400054120cbd5db2963f /vcl/headless | |
parent | 946f6132f9172fc7f79a1d99051011426767bf90 (diff) |
bool improvements
Change-Id: Iede12ed1e35581cf48d64b898f22949d0c1aa6de
Diffstat (limited to 'vcl/headless')
-rw-r--r-- | vcl/headless/svptext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/headless/svptext.cxx b/vcl/headless/svptext.cxx index a634922e71cc..29c823d50283 100644 --- a/vcl/headless/svptext.cxx +++ b/vcl/headless/svptext.cxx @@ -410,9 +410,9 @@ bool SvpSalGraphics::GetGlyphOutline( sal_GlyphId aGlyphId, B2DPolyPolygon& rPol aGlyphId &= GF_IDXMASK; if( pSF->GetGlyphOutline( aGlyphId, rPolyPoly ) ) - return sal_True; + return true; - return sal_False; + return false; } |