diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-12 17:54:18 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-14 10:15:00 +0100 |
commit | 99bd37faa522fa085e8bba620263e3f3da3bc017 (patch) | |
tree | ee2791d4237dd37f50aeda021b741a51afa8fe25 /xmloff | |
parent | cd6c6de5257bb671869f21fd4e6daba40ba6a038 (diff) |
-Werror,-Wunused-member-function
Change-Id: Ibfc721a819c044b5e6ec06e5bbad694662fe9e3f
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/xmlexppr.cxx | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/xmloff/source/style/xmlexppr.cxx b/xmloff/source/style/xmlexppr.cxx index 05bdf815225b..a703a997b43a 100644 --- a/xmloff/source/style/xmlexppr.cxx +++ b/xmloff/source/style/xmlexppr.cxx @@ -149,7 +149,6 @@ class FilterPropertyInfo_Impl { const OUString sApiName; std::list<sal_uInt32> aIndexes; - sal_uInt32 nCount; public: @@ -159,12 +158,6 @@ public: const OUString& GetApiName() const { return sApiName; } std::list<sal_uInt32>& GetIndexes() { return aIndexes; } - void AddIndex( sal_uInt32 nIndex ) - { - aIndexes.push_back(nIndex); - nCount++; - } - // for sort sal_Bool operator< ( const FilterPropertyInfo_Impl& rArg ) const { @@ -175,9 +168,7 @@ public: FilterPropertyInfo_Impl::FilterPropertyInfo_Impl( const OUString& rApiName, const sal_uInt32 nIndex ) : - sApiName( rApiName ), - aIndexes(), - nCount(1) + sApiName( rApiName ) { aIndexes.push_back(nIndex); } |