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.hxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/connectivity/source/drivers/mork/MErrorResource.hxx b/connectivity/source/drivers/mork/MErrorResource.hxx
index aa4c7c201572..f8ab0a7ef983 100644
--- a/connectivity/source/drivers/mork/MErrorResource.hxx
+++ b/connectivity/source/drivers/mork/MErrorResource.hxx
@@ -29,13 +29,11 @@ namespace connectivity
private:
const char* m_pErrorResourceId;
sal_Int32 m_nErrorCondition;
- OUString m_sParameter;
public:
ErrorDescriptor()
:m_pErrorResourceId(nullptr)
,m_nErrorCondition(0)
- ,m_sParameter()
{
}
@@ -51,7 +49,6 @@ namespace connectivity
const char* getResId() const { return m_pErrorResourceId; }
sal_Int32 getErrorCondition() const { return m_nErrorCondition; }
- const OUString& getParameter() const { return m_sParameter; }
bool is() const { return ( m_pErrorResourceId != nullptr ) || ( m_nErrorCondition != 0 ); }
};