[Libreoffice-commits] core.git: sfx2/source

Stephan Bergmann sbergman at redhat.com
Thu Oct 9 05:08:02 PDT 2014


 sfx2/source/dialog/templdlg.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit d4c1e55d7a61952b4569ce2f229cbae1cad65044
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Oct 9 14:07:33 2014 +0200

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

diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx
index c8d5e61..ed3b6a2 100644
--- a/sfx2/source/dialog/templdlg.cxx
+++ b/sfx2/source/dialog/templdlg.cxx
@@ -612,14 +612,13 @@ private:
     OUString aName;
     OUString aParent;
     StyleTreeArr_Impl pChildren;
-    bool bIsExpanded;
 
 public:
 
     bool HasParent() const { return !aParent.isEmpty(); }
 
     StyleTree_Impl(const OUString &rName, const OUString &rParent):
-        aName(rName), aParent(rParent), pChildren(0), bIsExpanded(false) {}
+        aName(rName), aParent(rParent), pChildren(0) {}
     ~StyleTree_Impl();
     void Put(StyleTree_Impl* pIns, sal_uIntPtr lPos=ULONG_MAX);
     sal_uIntPtr Count();


More information about the Libreoffice-commits mailing list