summaryrefslogtreecommitdiffstats
path: root/stoc/source/uriproc
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 /stoc/source/uriproc
parentwriterfilter: Kill unused XPathLogger. (diff)
downloadcore-3e82897353e576dc6e3fbf55371fda5a0c3415df.tar.gz
core-3e82897353e576dc6e3fbf55371fda5a0c3415df.zip
improve the inlinesimplememberfunctions clang plugin
Change-Id: I6d5a952901648e01904ef5c37f953c517304d31e
Diffstat (limited to 'stoc/source/uriproc')
-rw-r--r--stoc/source/uriproc/UriReference.cxx3
-rw-r--r--stoc/source/uriproc/UriReference.hxx2
2 files changed, 1 insertions, 4 deletions
diff --git a/stoc/source/uriproc/UriReference.cxx b/stoc/source/uriproc/UriReference.cxx
index c17afed3dd94..a1dff888b4a0 100644
--- a/stoc/source/uriproc/UriReference.cxx
+++ b/stoc/source/uriproc/UriReference.cxx
@@ -71,9 +71,6 @@ bool UriReference::isAbsolute() throw (css::uno::RuntimeException) {
return !m_scheme.isEmpty();
}
-OUString UriReference::getScheme() throw (css::uno::RuntimeException) {
- return m_scheme;
-}
OUString UriReference::getSchemeSpecificPart()
throw (css::uno::RuntimeException)
diff --git a/stoc/source/uriproc/UriReference.hxx b/stoc/source/uriproc/UriReference.hxx
index b9f1af8a023e..1bff45d5cffe 100644
--- a/stoc/source/uriproc/UriReference.hxx
+++ b/stoc/source/uriproc/UriReference.hxx
@@ -42,7 +42,7 @@ public:
bool isAbsolute() throw (css::uno::RuntimeException);
- OUString getScheme() throw (css::uno::RuntimeException);
+ OUString getScheme() throw (css::uno::RuntimeException) { return m_scheme;}
OUString getSchemeSpecificPart()
throw (css::uno::RuntimeException);