loplugin:unusedfields in forms
Change-Id: I875c07dcfc9fd9537ced1facd88ac712a7dacbbd
This commit is contained in:
parent
03ef7e11d8
commit
5b339db1ab
@ -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 )
|
||||
|
@ -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;
|
||||
|
@ -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 )
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user