diff options
author | Noel Grandin <noel@peralex.com> | 2015-12-22 15:41:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-12-23 08:13:53 +0200 |
commit | 5b339db1ab3ba8c3e657e70a5727fc83cc044e6d (patch) | |
tree | e7990e0595b16f12de86c23d2a57e04e900aebb1 /forms | |
parent | 03ef7e11d8d93061eb6b99897aac67c2ce8a5951 (diff) |
loplugin:unusedfields in forms
Change-Id: I875c07dcfc9fd9537ced1facd88ac712a7dacbbd
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/DatabaseForm.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/DatabaseForm.hxx | 1 | ||||
-rw-r--r-- | forms/source/component/Filter.cxx | 3 | ||||
-rw-r--r-- | forms/source/component/Filter.hxx | 4 | ||||
-rw-r--r-- | forms/source/xforms/submission/submission.hxx | 1 |
5 files changed, 0 insertions, 11 deletions
diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx index 0c0b3470f4d8..2beb4cb25f04 100644 --- a/forms/source/component/DatabaseForm.cxx +++ b/forms/source/component/DatabaseForm.cxx @@ -256,7 +256,6 @@ ODatabaseForm::ODatabaseForm(const Reference<XComponentContext>& _rxContext) ,OPropertyChangeListener(m_aMutex) ,m_aLoadListeners(m_aMutex) ,m_aRowSetApproveListeners(m_aMutex) - ,m_aRowSetListeners(m_aMutex) ,m_aSubmitListeners(m_aMutex) ,m_aErrorListeners(m_aMutex) ,m_aResetListeners( *this, m_aMutex ) @@ -295,7 +294,6 @@ ODatabaseForm::ODatabaseForm( const ODatabaseForm& _cloneSource ) ,IPropertyBagHelperContext() ,m_aLoadListeners( m_aMutex ) ,m_aRowSetApproveListeners( m_aMutex ) - ,m_aRowSetListeners( m_aMutex ) ,m_aSubmitListeners( m_aMutex ) ,m_aErrorListeners( m_aMutex ) ,m_aResetListeners( *this, m_aMutex ) diff --git a/forms/source/component/DatabaseForm.hxx b/forms/source/component/DatabaseForm.hxx index 469116b3289a..570747fc6a46 100644 --- a/forms/source/component/DatabaseForm.hxx +++ b/forms/source/component/DatabaseForm.hxx @@ -162,7 +162,6 @@ class ODatabaseForm :public OFormComponents // listener administration ::cppu::OInterfaceContainerHelper m_aLoadListeners; ::cppu::OInterfaceContainerHelper m_aRowSetApproveListeners; - ::cppu::OInterfaceContainerHelper m_aRowSetListeners; ::cppu::OInterfaceContainerHelper m_aSubmitListeners; ::cppu::OInterfaceContainerHelper m_aErrorListeners; ResetListeners m_aResetListeners; diff --git a/forms/source/component/Filter.cxx b/forms/source/component/Filter.cxx index 5cb32bd9f9c2..f1a364b17f8d 100644 --- a/forms/source/component/Filter.cxx +++ b/forms/source/component/Filter.cxx @@ -85,9 +85,6 @@ namespace frm :UnoControl() ,m_aTextListeners( *this ) ,m_xContext( _rxORB ) -#if HAVE_FEATURE_DBCONNECTIVITY - ,m_aParser( _rxORB ) -#endif ,m_nControlClass( FormComponentType::TEXTFIELD ) ,m_bFilterList( false ) ,m_bMultiLine( false ) diff --git a/forms/source/component/Filter.hxx b/forms/source/component/Filter.hxx index de256f361cb7..b82af0635980 100644 --- a/forms/source/component/Filter.hxx +++ b/forms/source/component/Filter.hxx @@ -64,16 +64,12 @@ namespace frm css::uno::Reference< css::beans::XPropertySet > m_xField; css::uno::Reference< css::util::XNumberFormatter > m_xFormatter; css::uno::Reference< css::sdbc::XConnection > m_xConnection; - css::uno::Reference< css::sdbc::XDatabaseMetaData > m_xMetaData; css::uno::Reference< css::awt::XWindow > m_xMessageParent; typedef std::unordered_map< OUString, OUString, OUStringHash > MapString2String; MapString2String m_aDisplayItemToValueItem; OUString m_aText; -#if HAVE_FEATURE_DBCONNECTIVITY - ::connectivity::OSQLParser m_aParser; -#endif sal_Int16 m_nControlClass; // which kind of control do we use? bool m_bFilterList : 1; bool m_bMultiLine : 1; diff --git a/forms/source/xforms/submission/submission.hxx b/forms/source/xforms/submission/submission.hxx index c10746963420..927c0ab9048e 100644 --- a/forms/source/xforms/submission/submission.hxx +++ b/forms/source/xforms/submission/submission.hxx @@ -109,7 +109,6 @@ class CSubmission protected: INetURLObject m_aURLObj; - css::uno::Reference< css::xml::xpath::XXPathObject > m_aXPathObject; css::uno::Reference< css::xml::dom::XDocumentFragment > m_aFragment; css::uno::Reference< css::io::XInputStream > m_aResultStream; css::uno::Reference< css::uno::XComponentContext > m_xContext; |