summaryrefslogtreecommitdiff
path: root/dbaccess/source/filter
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 /dbaccess/source/filter
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 'dbaccess/source/filter')
-rw-r--r--dbaccess/source/filter/xml/xmlTableFilterList.hxx4
-rw-r--r--dbaccess/source/filter/xml/xmlfilter.hxx8
2 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/filter/xml/xmlTableFilterList.hxx b/dbaccess/source/filter/xml/xmlTableFilterList.hxx
index da60e351ea75..3360131e6286 100644
--- a/dbaccess/source/filter/xml/xmlTableFilterList.hxx
+++ b/dbaccess/source/filter/xml/xmlTableFilterList.hxx
@@ -48,7 +48,7 @@ namespace dbaxml
@param _sTableFilterPattern
The new filter pattern.
*/
- inline void pushTableFilterPattern(const OUString& _sTableFilterPattern)
+ void pushTableFilterPattern(const OUString& _sTableFilterPattern)
{
m_aPatterns.push_back(_sTableFilterPattern);
}
@@ -57,7 +57,7 @@ namespace dbaxml
@param _sTypeFilter
The new type filter.
*/
- inline void pushTableTypeFilter(const OUString& _sTypeFilter)
+ void pushTableTypeFilter(const OUString& _sTypeFilter)
{
m_aTypes.push_back(_sTypeFilter);
}
diff --git a/dbaccess/source/filter/xml/xmlfilter.hxx b/dbaccess/source/filter/xml/xmlfilter.hxx
index ca92b750e99f..d2372d849d08 100644
--- a/dbaccess/source/filter/xml/xmlfilter.hxx
+++ b/dbaccess/source/filter/xml/xmlfilter.hxx
@@ -125,7 +125,7 @@ public:
const Reference<XPropertySet>& getDataSource() const { return m_xDataSource; }
- inline const TPropertyNameMap& getQuerySettings() const { return m_aQuerySettings;}
+ const TPropertyNameMap& getQuerySettings() const { return m_aQuerySettings;}
const SvXMLTokenMap& GetDocElemTokenMap() const;
const SvXMLTokenMap& GetDatabaseElemTokenMap() const;
@@ -145,15 +145,15 @@ public:
/** add a Info to the sequence which will be appended to the data source
@param _rInfo The property to append.
*/
- inline void addInfo(const css::beans::PropertyValue& _rInfo)
+ void addInfo(const css::beans::PropertyValue& _rInfo)
{
m_aInfoSequence.push_back(_rInfo);
}
void setPropertyInfo();
- inline bool isNewFormat() const { return m_bNewFormat; }
- inline void setNewFormat(bool _bNewFormat) { m_bNewFormat = _bNewFormat; }
+ bool isNewFormat() const { return m_bNewFormat; }
+ void setNewFormat(bool _bNewFormat) { m_bNewFormat = _bNewFormat; }
};
} // namespace dbaxml