diff options
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); } |