summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-03-07 17:41:39 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-03-07 17:45:37 +0100
commit960ef265fca5d7a555c41e0dc9bf2bd8ac9370f4 (patch)
tree09357a2146c071fd4f3f53752721d1f28581f440 /writerfilter
parent195b8491d0299038fb64d19463e3ce90905bf346 (diff)
unused parameter
Change-Id: I788999f29b32de4232efc9e8c4dc75238224f5a8
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/inc/dmapper/DomainMapper.hxx2
-rw-r--r--writerfilter/source/dmapper/DomainMapper.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/inc/dmapper/DomainMapper.hxx b/writerfilter/inc/dmapper/DomainMapper.hxx
index a2d600686586..25c123227d48 100644
--- a/writerfilter/inc/dmapper/DomainMapper.hxx
+++ b/writerfilter/inc/dmapper/DomainMapper.hxx
@@ -93,7 +93,7 @@ public:
virtual void data(const sal_uInt8* buf, size_t len,
writerfilter::Reference<Properties>::Pointer_t ref);
- void sprmWithProps( Sprm& sprm, ::boost::shared_ptr<PropertyMap> pContext, SprmType = SPRM_DEFAULT );
+ void sprmWithProps( Sprm& sprm, ::boost::shared_ptr<PropertyMap> pContext );
void PushStyleSheetProperties( ::boost::shared_ptr<PropertyMap> pStyleProperties, bool bAffectTableMngr = false );
void PopStyleSheetProperties( bool bAffectTableMngr = false );
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx b/writerfilter/source/dmapper/DomainMapper.cxx
index aae106685cd9..45d77e1c2971 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -974,7 +974,7 @@ static bool ExchangeLeftRight( const PropertyMapPtr rContext, DomainMapper_Impl*
return bExchangeLeftRight;
}
-void DomainMapper::sprmWithProps( Sprm& rSprm, PropertyMapPtr rContext, SprmType /*eSprmType*/ )
+void DomainMapper::sprmWithProps( Sprm& rSprm, PropertyMapPtr rContext )
{
OSL_ENSURE(rContext.get(), "PropertyMap has to be valid!");
if(!rContext.get())