summaryrefslogtreecommitdiff
path: root/cui/source/options/cfgchart.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/options/cfgchart.cxx')
-rw-r--r--cui/source/options/cfgchart.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/cfgchart.cxx b/cui/source/options/cfgchart.cxx
index d1ff39a6fb19..e03aa756ae3e 100644
--- a/cui/source/options/cfgchart.cxx
+++ b/cui/source/options/cfgchart.cxx
@@ -152,7 +152,7 @@ OUString SvxChartColorTable::getDefaultName( size_t _nIndex )
bool SvxChartColorTable::operator==( const SvxChartColorTable & _rOther ) const
{
// note: XColorEntry has no operator ==
- bool bEqual = ( this->m_aColorEntries.size() == _rOther.m_aColorEntries.size() );
+ bool bEqual = ( m_aColorEntries.size() == _rOther.m_aColorEntries.size() );
if( bEqual )
{
@@ -298,7 +298,7 @@ bool SvxChartColorTableItem::operator==( const SfxPoolItem& rAttr ) const
const SvxChartColorTableItem * rCTItem( dynamic_cast<const SvxChartColorTableItem * >( & rAttr ));
if( rCTItem )
{
- return (this->m_aColorTable == rCTItem->GetColorList());
+ return (m_aColorTable == rCTItem->GetColorList());
}
return false;