diff options
Diffstat (limited to 'vcl/source/filter/sgvtext.cxx')
-rw-r--r-- | vcl/source/filter/sgvtext.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/filter/sgvtext.cxx b/vcl/source/filter/sgvtext.cxx index e993471628b5..558c563bae24 100644 --- a/vcl/source/filter/sgvtext.cxx +++ b/vcl/source/filter/sgvtext.cxx @@ -152,7 +152,7 @@ // end of DefBase.Pas -bool CheckTextOutl(ObjAreaType& F, ObjLineType& L) +bool CheckTextOutl(ObjAreaType const & F, ObjLineType const & L) { return (F.FIntens!=L.LIntens) || ((F.FFarbe!=L.LFarbe) && (F.FIntens>0)) || @@ -564,7 +564,7 @@ struct ProcChrSta { ObjTextType Attrib; }; -void InitProcessCharState(ProcChrSta& State, ObjTextType& AktAtr, sal_uInt16 IndexA) +void InitProcessCharState(ProcChrSta& State, ObjTextType const & AktAtr, sal_uInt16 IndexA) { State.Attrib=AktAtr; State.OutCh=0; @@ -587,7 +587,7 @@ UCHAR Upcase(UCHAR c) return c; } -sal_uInt16 GetCharWidth(OutputDevice& rOut, UCHAR c) +sal_uInt16 GetCharWidth(OutputDevice const & rOut, UCHAR c) { sal_uInt16 ChrWidth; |