diff options
author | ka <kai.ahrens@oracle.com> | 2011-02-18 05:20:51 +0100 |
---|---|---|
committer | ka <kai.ahrens@oracle.com> | 2011-02-18 05:20:51 +0100 |
commit | f759ad09f5cfd415390ba25aa413cbecb10f047b (patch) | |
tree | aa387694e44d3e51f117a58779eff25fbd6091e0 /vcl/source/gdi/impgraph.cxx | |
parent | 66cf579511eac065ad1f75022537f9a2d4cb7252 (diff) |
ka102: type changes nneded for DEV300_m100
Diffstat (limited to 'vcl/source/gdi/impgraph.cxx')
-rw-r--r-- | vcl/source/gdi/impgraph.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/gdi/impgraph.cxx b/vcl/source/gdi/impgraph.cxx index ddb3f42dd039..b4af43cf3556 100644 --- a/vcl/source/gdi/impgraph.cxx +++ b/vcl/source/gdi/impgraph.cxx @@ -480,7 +480,7 @@ sal_Bool ImpGraphic::ImplIsAnimated() const // ------------------------------------------------------------------------ -BOOL ImpGraphic::ImplIsEPS() const +sal_Bool ImpGraphic::ImplIsEPS() const { return( ( meType == GRAPHIC_GDIMETAFILE ) && ( maMetaFile.GetActionCount() > 0 ) && @@ -489,7 +489,7 @@ BOOL ImpGraphic::ImplIsEPS() const // ------------------------------------------------------------------------ -BOOL ImpGraphic::ImplIsRenderGraphic() const +sal_Bool ImpGraphic::ImplIsRenderGraphic() const { return( ( GRAPHIC_GDIMETAFILE == meType ) && ( 1 == maMetaFile.GetActionCount() ) && @@ -498,9 +498,9 @@ BOOL ImpGraphic::ImplIsRenderGraphic() const // ------------------------------------------------------------------------ -BOOL ImpGraphic::ImplHasRenderGraphic() const +sal_Bool ImpGraphic::ImplHasRenderGraphic() const { - BOOL bRet = FALSE; + sal_Bool bRet = sal_False; if( GRAPHIC_GDIMETAFILE == meType ) { @@ -510,7 +510,7 @@ BOOL ImpGraphic::ImplHasRenderGraphic() const { if( META_RENDERGRAPHIC_ACTION == pAct->GetType() ) { - bRet = TRUE; + bRet = sal_True; } } |