Kaydet (Commit) 99bd37fa authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-member-function

Change-Id: Ibfc721a819c044b5e6ec06e5bbad694662fe9e3f
üst cd6c6de5
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment