[Libreoffice-commits] core.git: include/svx svx/source

Stephan Bergmann sbergman at redhat.com
Thu Sep 22 20:01:54 UTC 2016


 include/svx/svdmodel.hxx       |    1 -
 svx/source/svdraw/svdmodel.cxx |    3 +--
 2 files changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 261113b5c78eaa93beed7e5961bca5fe8e1339b7
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Sep 22 21:59:41 2016 +0200

    -Werror,-Wunused-private-field
    
    Change-Id: I88df0a06482a04609eb0c394dc7d9a023fc7e921

diff --git a/include/svx/svdmodel.hxx b/include/svx/svdmodel.hxx
index 14299d2..e07d8e7 100644
--- a/include/svx/svdmodel.hxx
+++ b/include/svx/svdmodel.hxx
@@ -126,7 +126,6 @@ private:
     SdrHintKind                             meHint;
     const SdrObject*                        mpObj;
     const SdrPage*                          mpPage;
-    Rectangle                               maRectangle;
 
 public:
     explicit SdrHint(SdrHintKind eNewHint);
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx
index 95bcaedb2..4bfb71b 100644
--- a/svx/source/svdraw/svdmodel.cxx
+++ b/svx/source/svdraw/svdmodel.cxx
@@ -2089,8 +2089,7 @@ SdrHint::SdrHint(SdrHintKind eNewHint)
 SdrHint::SdrHint(SdrHintKind eNewHint, const SdrObject& rNewObj)
 :   meHint(eNewHint),
     mpObj(&rNewObj),
-    mpPage(rNewObj.GetPage()),
-    maRectangle(rNewObj.GetLastBoundRect())
+    mpPage(rNewObj.GetPage())
 {
 }
 


More information about the Libreoffice-commits mailing list