summaryrefslogtreecommitdiff
path: root/filter/source/xsltfilter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-12 14:06:28 +0200
committerNoel Grandin <noel@peralex.com>2014-06-17 10:55:17 +0200
commit3e82897353e576dc6e3fbf55371fda5a0c3415df (patch)
tree71c2f03128885000efae1852dccb504f8355c79e /filter/source/xsltfilter
parentec95abf2d8afeec38c9225ea49caa0e08d82b504 (diff)
improve the inlinesimplememberfunctions clang plugin
Change-Id: I6d5a952901648e01904ef5c37f953c517304d31e
Diffstat (limited to 'filter/source/xsltfilter')
-rw-r--r--filter/source/xsltfilter/LibXSLTTransformer.cxx10
-rw-r--r--filter/source/xsltfilter/LibXSLTTransformer.hxx4
2 files changed, 2 insertions, 12 deletions
diff --git a/filter/source/xsltfilter/LibXSLTTransformer.cxx b/filter/source/xsltfilter/LibXSLTTransformer.cxx
index 882501fa3eb6..de259dda5cc7 100644
--- a/filter/source/xsltfilter/LibXSLTTransformer.cxx
+++ b/filter/source/xsltfilter/LibXSLTTransformer.cxx
@@ -536,17 +536,7 @@ namespace XSLT
}
}
- const OString
- LibXSLTTransformer::getStyleSheetURL()
- {
- return m_styleSheetURL;
- }
- ::std::map<const char*, OString>
- LibXSLTTransformer::getParameters()
- {
- return m_parameters;
- }
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/filter/source/xsltfilter/LibXSLTTransformer.hxx b/filter/source/xsltfilter/LibXSLTTransformer.hxx
index 1233ad603afa..45c5490a14e2 100644
--- a/filter/source/xsltfilter/LibXSLTTransformer.hxx
+++ b/filter/source/xsltfilter/LibXSLTTransformer.hxx
@@ -139,10 +139,10 @@ namespace XSLT
error(const OUString& msg);
const OString SAL_CALL
- getStyleSheetURL();
+ getStyleSheetURL() { return m_styleSheetURL; }
::std::map<const char*, OString> SAL_CALL
- getParameters();
+ getParameters() { return m_parameters; }
com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> SAL_CALL
getComponentContext() {