summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/mork/MErrorResource.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/mork/MErrorResource.hxx')
-rw-r--r--connectivity/source/drivers/mork/MErrorResource.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/connectivity/source/drivers/mork/MErrorResource.hxx b/connectivity/source/drivers/mork/MErrorResource.hxx
index c84c9b72d5d9..6c1e6596de29 100644
--- a/connectivity/source/drivers/mork/MErrorResource.hxx
+++ b/connectivity/source/drivers/mork/MErrorResource.hxx
@@ -39,21 +39,21 @@ namespace connectivity
{
}
- inline void setResId( const sal_uInt16 _nErrorResourceId )
+ void setResId( const sal_uInt16 _nErrorResourceId )
{
m_nErrorResourceId = _nErrorResourceId;
}
- inline void reset()
+ void reset()
{
m_nErrorResourceId = 0;
m_nErrorCondition = 0;
}
- inline sal_uInt16 getResId() const { return m_nErrorResourceId; }
- inline sal_Int32 getErrorCondition() const { return m_nErrorCondition; }
- inline const OUString& getParameter() const { return m_sParameter; }
+ sal_uInt16 getResId() const { return m_nErrorResourceId; }
+ sal_Int32 getErrorCondition() const { return m_nErrorCondition; }
+ const OUString& getParameter() const { return m_sParameter; }
- inline bool is() const { return ( m_nErrorResourceId != 0 ) || ( m_nErrorCondition != 0 ); }
+ bool is() const { return ( m_nErrorResourceId != 0 ) || ( m_nErrorCondition != 0 ); }
};
}
}