summaryrefslogtreecommitdiff
path: root/filter/source
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source')
-rw-r--r--filter/source/config/cache/cacheitem.cxx12
-rw-r--r--filter/source/msfilter/msdffimp.cxx8
-rw-r--r--filter/source/svg/svgwriter.cxx6
3 files changed, 13 insertions, 13 deletions
diff --git a/filter/source/config/cache/cacheitem.cxx b/filter/source/config/cache/cacheitem.cxx
index 21db68c3c382..ef117d22cb6f 100644
--- a/filter/source/config/cache/cacheitem.cxx
+++ b/filter/source/config/cache/cacheitem.cxx
@@ -45,8 +45,8 @@ void CacheItem::update(const CacheItem& rUpdateItem)
pItUpdate != rUpdateItem.end() ;
++pItUpdate )
{
- iterator pItThis = this->find(pItUpdate->first);
- if (pItThis == this->end())
+ iterator pItThis = find(pItUpdate->first);
+ if (pItThis == end())
(*this)[pItUpdate->first] = pItUpdate->second; // add new prop
else
pItThis->second = pItUpdate->second; // change value of existing prop
@@ -305,8 +305,8 @@ bool CacheItem::haveProps(const CacheItem& lProps) const
++pIt )
{
// i) one required property does not exist at this item => return false
- const_iterator pItThis = this->find(pIt->first);
- if (pItThis == this->end())
+ const_iterator pItThis = find(pIt->first);
+ if (pItThis == end())
{
FILTER_CONFIG_LOG_1_("CacheItem::haveProps() ... didn't found \"%s\" => return FALSE\n", _FILTER_CONFIG_TO_ASCII_(pIt->first))
return false;
@@ -338,8 +338,8 @@ bool CacheItem::dontHaveProps(const CacheItem& lProps) const
// => continue with next one, because
// "excluding" means... "don't have it".
// And "not exists" matches to "don't have it".
- const_iterator pItThis = this->find(pIt->first);
- if (pItThis == this->end())
+ const_iterator pItThis = find(pIt->first);
+ if (pItThis == end())
{
FILTER_CONFIG_LOG_1_("CacheItem::dontHaveProps() ... not found \"%s\" => continue loop!\n", _FILTER_CONFIG_TO_ASCII_(pIt->first))
continue;
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index af2988743336..e49eb2264593 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -5961,12 +5961,12 @@ void SvxMSDffManager::GetDrawingContainerData( SvStream& rSt, sal_uLong nLenDg,
// Patriarch found (the upmost shape group container) ?
if( DFF_msofbtSpgrContainer == nFbt )
{
- if(!this->GetShapeGroupContainerData( rSt, nLength, true, nDrawingContainerId )) return;
+ if(!GetShapeGroupContainerData( rSt, nLength, true, nDrawingContainerId )) return;
}
// empty Shape Container ? (outside of shape group container)
else if( DFF_msofbtSpContainer == nFbt )
{
- if(!this->GetShapeContainerData( rSt, nLength, ULONG_MAX, nDrawingContainerId )) return;
+ if(!GetShapeContainerData( rSt, nLength, ULONG_MAX, nDrawingContainerId )) return;
}
else
rSt.SeekRel( nLength );
@@ -5995,14 +5995,14 @@ bool SvxMSDffManager::GetShapeGroupContainerData( SvStream& rSt,
if( DFF_msofbtSpContainer == nFbt )
{
sal_uLong nGroupOffs = bFirst ? nStartShapeGroupCont - DFF_COMMON_RECORD_HEADER_SIZE : ULONG_MAX;
- if ( !this->GetShapeContainerData( rSt, nLength, nGroupOffs, nDrawingContainerId ) )
+ if ( !GetShapeContainerData( rSt, nLength, nGroupOffs, nDrawingContainerId ) )
return false;
bFirst = false;
}
// nested shape group container ?
else if( DFF_msofbtSpgrContainer == nFbt )
{
- if ( !this->GetShapeGroupContainerData( rSt, nLength, false, nDrawingContainerId ) )
+ if ( !GetShapeGroupContainerData( rSt, nLength, false, nDrawingContainerId ) )
return false;
}
else
diff --git a/filter/source/svg/svgwriter.cxx b/filter/source/svg/svgwriter.cxx
index 6caf231ad57e..069309f540c1 100644
--- a/filter/source/svg/svgwriter.cxx
+++ b/filter/source/svg/svgwriter.cxx
@@ -1530,10 +1530,10 @@ void SVGTextWriter::writeTextPortion( const Point& rPos,
return;
bool bStandAloneTextPortion = false;
- if( !this->isTextShapeStarted() )
+ if( !isTextShapeStarted() )
{
bStandAloneTextPortion = true;
- this->startTextShape();
+ startTextShape();
}
mbLineBreak = false;
@@ -1602,7 +1602,7 @@ void SVGTextWriter::writeTextPortion( const Point& rPos,
if( bStandAloneTextPortion )
{
- this->endTextShape();
+ endTextShape();
}
}