diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 12:53:51 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 12:53:51 +0100 |
commit | e8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch) | |
tree | dae18a3acbf29c192118e7c003f80df8da8e21ae /vcl/source/gdi/graph.cxx | |
parent | 1c8402465cfd4df862409dc310f5f099d044c4d8 (diff) |
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'vcl/source/gdi/graph.cxx')
-rw-r--r-- | vcl/source/gdi/graph.cxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/vcl/source/gdi/graph.cxx b/vcl/source/gdi/graph.cxx index 20b1b090464c..be6af1734f8f 100644 --- a/vcl/source/gdi/graph.cxx +++ b/vcl/source/gdi/graph.cxx @@ -289,17 +289,17 @@ Graphic& Graphic::operator=( const Graphic& rGraphic ) return *this; } -sal_Bool Graphic::operator==( const Graphic& rGraphic ) const +bool Graphic::operator==( const Graphic& rGraphic ) const { return( *mpImpGraphic == *rGraphic.mpImpGraphic ); } -sal_Bool Graphic::operator!=( const Graphic& rGraphic ) const +bool Graphic::operator!=( const Graphic& rGraphic ) const { return( *mpImpGraphic != *rGraphic.mpImpGraphic ); } -sal_Bool Graphic::operator!() const +bool Graphic::operator!() const { return( GRAPHIC_NONE == mpImpGraphic->ImplGetType() ); } @@ -336,27 +336,27 @@ void Graphic::SetDefaultType() mpImpGraphic->ImplSetDefaultType(); } -sal_Bool Graphic::IsSupportedGraphic() const +bool Graphic::IsSupportedGraphic() const { return mpImpGraphic->ImplIsSupportedGraphic(); } -sal_Bool Graphic::IsTransparent() const +bool Graphic::IsTransparent() const { return mpImpGraphic->ImplIsTransparent(); } -sal_Bool Graphic::IsAlpha() const +bool Graphic::IsAlpha() const { return mpImpGraphic->ImplIsAlpha(); } -sal_Bool Graphic::IsAnimated() const +bool Graphic::IsAnimated() const { return mpImpGraphic->ImplIsAnimated(); } -sal_Bool Graphic::IsEPS() const +bool Graphic::IsEPS() const { return mpImpGraphic->ImplIsEPS(); } @@ -516,31 +516,31 @@ sal_uLong Graphic::GetDocFilePos() const return mpImpGraphic->ImplGetDocFilePos(); } -sal_Bool Graphic::SwapOut() +bool Graphic::SwapOut() { ImplTestRefCount(); return mpImpGraphic->ImplSwapOut(); } -sal_Bool Graphic::SwapOut( SvStream* pOStream ) +bool Graphic::SwapOut( SvStream* pOStream ) { ImplTestRefCount(); return mpImpGraphic->ImplSwapOut( pOStream ); } -sal_Bool Graphic::SwapIn() +bool Graphic::SwapIn() { ImplTestRefCount(); return mpImpGraphic->ImplSwapIn(); } -sal_Bool Graphic::SwapIn( SvStream* pStrm ) +bool Graphic::SwapIn( SvStream* pStrm ) { ImplTestRefCount(); return mpImpGraphic->ImplSwapIn( pStrm ); } -sal_Bool Graphic::IsSwapOut() const +bool Graphic::IsSwapOut() const { return mpImpGraphic->ImplIsSwapOut(); } @@ -556,7 +556,7 @@ GfxLink Graphic::GetLink() const return mpImpGraphic->ImplGetLink(); } -sal_Bool Graphic::IsLink() const +bool Graphic::IsLink() const { return mpImpGraphic->ImplIsLink(); } @@ -566,7 +566,7 @@ sal_uLong Graphic::GetChecksum() const return mpImpGraphic->ImplGetChecksum(); } -sal_Bool Graphic::ExportNative( SvStream& rOStream ) const +bool Graphic::ExportNative( SvStream& rOStream ) const { return mpImpGraphic->ImplExportNative( rOStream ); } |