diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-08-20 15:07:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-08-20 16:27:27 +0200 |
commit | af1b02ede015e21cdad9ad98f8f042db4f31c4ce (patch) | |
tree | 402438c58c9b7036a78737a7e6c081a3688b5c26 /drawinglayer | |
parent | 341f923b5e487fa596e369d2ad17daaea909d9ec (diff) |
-Werror,-Wunused-private-field
...after cf66fd32ed8a31d4ca6f031a13e90caf19f40682 "loplugin:unusedmethods"
Change-Id: I799eec5cf1e5ec31e8d6bb2bfefda10d8b41c699
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120787
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/source/geometry/viewinformation3d.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drawinglayer/source/geometry/viewinformation3d.cxx b/drawinglayer/source/geometry/viewinformation3d.cxx index bab2e31f9630..93ba5e2e20c9 100644 --- a/drawinglayer/source/geometry/viewinformation3d.cxx +++ b/drawinglayer/source/geometry/viewinformation3d.cxx @@ -66,9 +66,6 @@ namespace drawinglayer::geometry // the point in time double mfViewTime; - // the complete PropertyValue representation (if already created) - uno::Sequence< beans::PropertyValue > mxViewInformation; - // the extra PropertyValues; does not contain the transformations uno::Sequence< beans::PropertyValue > mxExtendedInformation; @@ -224,7 +221,6 @@ namespace drawinglayer::geometry maProjection(rProjection), maDeviceToView(rDeviceToView), mfViewTime(fViewTime), - mxViewInformation(), mxExtendedInformation() { impInterpretPropertyValues(rExtendedParameters); @@ -236,7 +232,6 @@ namespace drawinglayer::geometry maProjection(), maDeviceToView(), mfViewTime(), - mxViewInformation(rViewParameters), mxExtendedInformation() { impInterpretPropertyValues(rViewParameters); @@ -248,7 +243,6 @@ namespace drawinglayer::geometry maProjection(), maDeviceToView(), mfViewTime(), - mxViewInformation(), mxExtendedInformation() { } |