diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-23 01:16:50 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-10-23 01:16:57 +0300 |
commit | 1533952b46abaafdc6f05356d2d5a71749146b7c (patch) | |
tree | 014f1910c9eaed921156e8f2a1a011b9b074b740 /sw | |
parent | 5040ad523e0e4ad336e2449030516f5a90ea5656 (diff) |
WaE: declaration shadows a member of 'this'
Change-Id: I1f5b3ffccb89a5b9111e60c0a1943e1642c3499b
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/crsr/viscrs.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/source/core/crsr/viscrs.cxx b/sw/source/core/crsr/viscrs.cxx index e766fa5a42f9..68e6a5b7f3d7 100644 --- a/sw/source/core/crsr/viscrs.cxx +++ b/sw/source/core/crsr/viscrs.cxx @@ -297,12 +297,14 @@ void SwSelPaintRects::Show() for (size_t i = 0; i < size(); ++i) { Point origin = pOut->LogicToPixel((*this)[i].Pos()); - Size size = pOut->LogicToPixel((*this)[i].SSize()); + Size ssize = pOut->LogicToPixel((*this)[i].SSize()); #ifdef IOS rects[i] = CGRectMake(origin.X(), origin.Y(), - size.Width(), size.Height()); + ssize.Width(), ssize.Height()); #else // Not yet implemented + (void) origin; + (void) ssize; #endif } // GetShell returns a SwCrsrShell which actually is a SwWrtShell |