diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-10-09 14:07:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-10-09 14:07:33 +0200 |
commit | d4c1e55d7a61952b4569ce2f229cbae1cad65044 (patch) | |
tree | 43d1bbcb0dc21c828bdd6b6a6da404a352135c5e /sfx2 | |
parent | 27ff44965e60a56071d325bde62287a862a53ab7 (diff) |
-Werror,-Wunused-private-field
Change-Id: Ia7370c4aaa6c0bf69eab13979b6d2209dae695f0
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/templdlg.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx index c8d5e61ee695..ed3b6a275fbd 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(); |