diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-20 13:22:23 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-21 06:17:24 +0000 |
commit | ece0ff48fafce28691321e17420ebc64b3175594 (patch) | |
tree | e4745fd6634cdca465efbb576923e794897d3326 /tools/source/generic | |
parent | 1c4243332213ad72ed63476c99693758d8cbcc40 (diff) |
loplugin:expandablemethodds in include/tools..unotools
Change-Id: I5607d4a2a81de1a3ae329acd1e90280a21522f06
Reviewed-on: https://gerrit.libreoffice.org/30097
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools/source/generic')
-rw-r--r-- | tools/source/generic/b3dtrans.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/generic/b3dtrans.cxx b/tools/source/generic/b3dtrans.cxx index 2b8929433540..d12330145fdf 100644 --- a/tools/source/generic/b3dtrans.cxx +++ b/tools/source/generic/b3dtrans.cxx @@ -334,14 +334,14 @@ void B3dTransformationSet::SetViewportRectangle(Rectangle const & rRect, Rectang const basegfx::B3DPoint B3dTransformationSet::WorldToEyeCoor(const basegfx::B3DPoint& rVec) { basegfx::B3DPoint aVec(rVec); - aVec *= GetOrientation(); + aVec *= maOrientation; return aVec; } const basegfx::B3DPoint B3dTransformationSet::EyeToWorldCoor(const basegfx::B3DPoint& rVec) { basegfx::B3DPoint aVec(rVec); - aVec *= GetInvOrientation(); + aVec *= maInvOrientation; return aVec; } |