diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-05-19 16:25:57 +0200 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-21 12:59:32 +0200 |
commit | e1e3def8cc15380ff761ba46032bbfadd80d43c8 (patch) | |
tree | 1a59f6ef9815d8b1739617794850f8f6e2f160bd /vcl/source | |
parent | 68d7364dfbed50a802e61bf94493510405367b31 (diff) |
Fix typos
Change-Id: I438b6719817e0bbb47370ec54561eed2bc402cba
Reviewed-on: https://gerrit.libreoffice.org/37783
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/region.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/gdi/region.cxx b/vcl/source/gdi/region.cxx index cec2de3f6b37..aaed62a24e0b 100644 --- a/vcl/source/gdi/region.cxx +++ b/vcl/source/gdi/region.cxx @@ -1289,7 +1289,7 @@ const tools::PolyPolygon vcl::Region::GetAsPolyPolygon() const if(getB2DPolyPolygon()) { - // the polygon needs to be converted, buffer the down converion + // the polygon needs to be converted, buffer the down conversion const tools::PolyPolygon aPolyPolgon(*getB2DPolyPolygon()); const_cast< vcl::Region* >(this)->mpPolyPolygon.reset(new tools::PolyPolygon(aPolyPolgon)); @@ -1298,7 +1298,7 @@ const tools::PolyPolygon vcl::Region::GetAsPolyPolygon() const if(getRegionBand()) { - // the BandRegion needs to be converted, buffer the converion + // the BandRegion needs to be converted, buffer the conversion const tools::PolyPolygon aPolyPolgon(ImplCreatePolyPolygonFromRegionBand()); const_cast< vcl::Region* >(this)->mpPolyPolygon.reset(new tools::PolyPolygon(aPolyPolgon)); @@ -1326,7 +1326,7 @@ const basegfx::B2DPolyPolygon vcl::Region::GetAsB2DPolyPolygon() const if(getRegionBand()) { - // the BandRegion needs to be converted, buffer the converion + // the BandRegion needs to be converted, buffer the conversion const basegfx::B2DPolyPolygon aB2DPolyPolygon(ImplCreateB2DPolyPolygonFromRegionBand()); const_cast< vcl::Region* >(this)->mpB2DPolyPolygon.reset(new basegfx::B2DPolyPolygon(aB2DPolyPolygon)); |