summaryrefslogtreecommitdiff
path: root/include/rtl/malformeduriexception.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/rtl/malformeduriexception.hxx')
-rw-r--r--include/rtl/malformeduriexception.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/rtl/malformeduriexception.hxx b/include/rtl/malformeduriexception.hxx
index effe116fdc3e..3e294516a21f 100644
--- a/include/rtl/malformeduriexception.hxx
+++ b/include/rtl/malformeduriexception.hxx
@@ -36,15 +36,15 @@ public:
@param rMessage
A message containing any details about the exception.
*/
- inline SAL_EXCEPTION_DLLPRIVATE MalformedUriException(
+ SAL_EXCEPTION_DLLPRIVATE MalformedUriException(
rtl::OUString const & rMessage): m_aMessage(rMessage) {}
- inline SAL_EXCEPTION_DLLPRIVATE MalformedUriException(
+ SAL_EXCEPTION_DLLPRIVATE MalformedUriException(
MalformedUriException const & other): m_aMessage(other.m_aMessage) {}
- inline SAL_EXCEPTION_DLLPRIVATE ~MalformedUriException() {}
+ SAL_EXCEPTION_DLLPRIVATE ~MalformedUriException() {}
- inline SAL_EXCEPTION_DLLPRIVATE MalformedUriException operator =(
+ SAL_EXCEPTION_DLLPRIVATE MalformedUriException operator =(
MalformedUriException const & rOther)
{ m_aMessage = rOther.m_aMessage; return *this; }
@@ -54,7 +54,7 @@ public:
A reference to the message. The reference is valid for the lifetime of
this MalformedUriException.
*/
- inline SAL_EXCEPTION_DLLPRIVATE rtl::OUString const & getMessage() const
+ SAL_EXCEPTION_DLLPRIVATE rtl::OUString const & getMessage() const
{ return m_aMessage; }
private: