summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/BorderHandler.hxx2
-rw-r--r--writerfilter/source/dmapper/PropertyMap.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/BorderHandler.hxx b/writerfilter/source/dmapper/BorderHandler.hxx
index 602e2fed244c..07b5b195d1eb 100644
--- a/writerfilter/source/dmapper/BorderHandler.hxx
+++ b/writerfilter/source/dmapper/BorderHandler.hxx
@@ -65,7 +65,7 @@ private:
virtual void lcl_sprm(Sprm & sprm) SAL_OVERRIDE;
public:
- BorderHandler( bool bOOXML );
+ explicit BorderHandler( bool bOOXML );
virtual ~BorderHandler();
::std::shared_ptr<PropertyMap> getProperties();
diff --git a/writerfilter/source/dmapper/PropertyMap.cxx b/writerfilter/source/dmapper/PropertyMap.cxx
index 261e5d2507c9..6b3a76d69834 100644
--- a/writerfilter/source/dmapper/PropertyMap.cxx
+++ b/writerfilter/source/dmapper/PropertyMap.cxx
@@ -1305,7 +1305,7 @@ void SectionPropertyMap::CloseSectionGroup( DomainMapper_Impl& rDM_Impl )
class NamedPropertyValue {
OUString m_aName;
public:
- NamedPropertyValue(const OUString& i_aStr)
+ explicit NamedPropertyValue(const OUString& i_aStr)
: m_aName(i_aStr) { }
bool operator() (beans::PropertyValue& aVal)
{ return aVal.Name == m_aName; }