summaryrefslogtreecommitdiff
path: root/writerfilter/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-03 20:57:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-03 20:55:50 +0000
commit6cb9e6dad798ec59f055aebe84a9c4a21e4be40d (patch)
tree21a7d6c0b165251ba8e0f36e73c851d41ac9dd04 /writerfilter/source
parent7e8806cd728bf906e1a8f1d649bef7337f297b1c (diff)
Remove redundant 'inline' keyword
...from function definitions occurring within class definitions. Done with a rewriting Clang plugin (to be pushed later). Change-Id: I9c6f2818a57ccdb361548895a7743107cbacdff8 Reviewed-on: https://gerrit.libreoffice.org/34874 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'writerfilter/source')
-rw-r--r--writerfilter/source/dmapper/DomainMapperTableManager.hxx2
-rw-r--r--writerfilter/source/dmapper/PageBordersHandler.hxx2
-rw-r--r--writerfilter/source/dmapper/TablePropertiesHandler.hxx10
-rw-r--r--writerfilter/source/dmapper/TblStylePrHandler.hxx2
4 files changed, 8 insertions, 8 deletions
diff --git a/writerfilter/source/dmapper/DomainMapperTableManager.hxx b/writerfilter/source/dmapper/DomainMapperTableManager.hxx
index 330a20d43713..d63c397f9426 100644
--- a/writerfilter/source/dmapper/DomainMapperTableManager.hxx
+++ b/writerfilter/source/dmapper/DomainMapperTableManager.hxx
@@ -84,7 +84,7 @@ public:
// use this method to avoid adding the properties for the table
// but in the provided properties map.
- inline void SetStyleProperties( PropertyMapPtr pProperties ) { m_pStyleProps = pProperties; };
+ void SetStyleProperties( PropertyMapPtr pProperties ) { m_pStyleProps = pProperties; };
virtual bool sprm(Sprm & rSprm) override;
bool attribute(Id nName, Value & val);
diff --git a/writerfilter/source/dmapper/PageBordersHandler.hxx b/writerfilter/source/dmapper/PageBordersHandler.hxx
index 8fa0f40a6976..6ced273953af 100644
--- a/writerfilter/source/dmapper/PageBordersHandler.hxx
+++ b/writerfilter/source/dmapper/PageBordersHandler.hxx
@@ -62,7 +62,7 @@ public:
PageBordersHandler( );
virtual ~PageBordersHandler( ) override;
- inline sal_Int32 GetDisplayOffset( )
+ sal_Int32 GetDisplayOffset( )
{
return ( m_nOffset << 5 ) + m_nDisplay;
};
diff --git a/writerfilter/source/dmapper/TablePropertiesHandler.hxx b/writerfilter/source/dmapper/TablePropertiesHandler.hxx
index 400765126426..7197c13e1ff7 100644
--- a/writerfilter/source/dmapper/TablePropertiesHandler.hxx
+++ b/writerfilter/source/dmapper/TablePropertiesHandler.hxx
@@ -46,12 +46,12 @@ public:
bool sprm(Sprm & sprm);
- inline void SetTableManager( TableManager* pTableManager )
+ void SetTableManager( TableManager* pTableManager )
{
m_pTableManager = pTableManager;
};
- inline void SetProperties( PropertyMapPtr pProperties )
+ void SetProperties( PropertyMapPtr pProperties )
{
m_pCurrentProperties = pProperties;
};
@@ -60,7 +60,7 @@ public:
private:
- inline void cellProps( TablePropertyMapPtr pProps )
+ void cellProps( TablePropertyMapPtr pProps )
{
if ( m_pTableManager )
m_pTableManager->cellProps( pProps );
@@ -68,7 +68,7 @@ private:
m_pCurrentProperties->InsertProps(pProps);
};
- inline void insertRowProps( TablePropertyMapPtr pProps )
+ void insertRowProps( TablePropertyMapPtr pProps )
{
if ( m_pTableManager )
m_pTableManager->insertRowProps( pProps );
@@ -76,7 +76,7 @@ private:
m_pCurrentProperties->InsertProps(pProps);
};
- inline void insertTableProps( TablePropertyMapPtr pProps )
+ void insertTableProps( TablePropertyMapPtr pProps )
{
if ( m_pTableManager )
m_pTableManager->insertTableProps( pProps );
diff --git a/writerfilter/source/dmapper/TblStylePrHandler.hxx b/writerfilter/source/dmapper/TblStylePrHandler.hxx
index 5d38727f806c..920a56560809 100644
--- a/writerfilter/source/dmapper/TblStylePrHandler.hxx
+++ b/writerfilter/source/dmapper/TblStylePrHandler.hxx
@@ -69,7 +69,7 @@ public:
virtual ~TblStylePrHandler( ) override;
const PropertyMapPtr& getProperties() { return m_pProperties; };
- inline TblStyleType getType() { return m_nType; };
+ TblStyleType getType() { return m_nType; };
OUString getTypeString();
void appendInteropGrabBag(const OUString& aKey, const OUString& aValue);
css::beans::PropertyValue getInteropGrabBag(const OUString& aName);