diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-16 10:11:04 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-18 10:03:44 +0000 |
commit | 2c8fe2e737b84ecd3dbac36a4fe6bd061bbd3bae (patch) | |
tree | 66ba7ff0b95cf5ceeda5e53294a71c6786460eb3 /include/connectivity | |
parent | 4e59eecc077d27dd9762e7c890b2aaf92a212959 (diff) |
update unusedmethods plugin to deal with constructors
and fix the operator< implementations in some of the other
plugins too.
Change-Id: Ie5631e0cdc8d2a994ad2af2533cdb558a6cfc035
Reviewed-on: https://gerrit.libreoffice.org/25057
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/connectivity')
-rw-r--r-- | include/connectivity/FValue.hxx | 1 | ||||
-rw-r--r-- | include/connectivity/TTableHelper.hxx | 1 | ||||
-rw-r--r-- | include/connectivity/parameters.hxx | 6 |
3 files changed, 0 insertions, 8 deletions
diff --git a/include/connectivity/FValue.hxx b/include/connectivity/FValue.hxx index a25989c21fe4..21933c7100b5 100644 --- a/include/connectivity/FValue.hxx +++ b/include/connectivity/FValue.hxx @@ -519,7 +519,6 @@ namespace connectivity { ::std::vector<sal_Int32> m_nParameterIndexes; public: - OAssignValues() : m_nParameterIndexes(1,SQL_NO_PARAMETER){} OAssignValues(Vector::size_type n) : OValueRefVector(n),m_nParameterIndexes(n+1,SQL_NO_PARAMETER){} void setParameterIndex(sal_Int32 _nId,sal_Int32 _nParameterIndex) { m_nParameterIndexes[_nId] = _nParameterIndex;} diff --git a/include/connectivity/TTableHelper.hxx b/include/connectivity/TTableHelper.hxx index 2c37d370d91f..3e56f9c34c36 100644 --- a/include/connectivity/TTableHelper.hxx +++ b/include/connectivity/TTableHelper.hxx @@ -49,7 +49,6 @@ namespace connectivity OrdinalPosition nOrdinalPosition; - ColumnDesc() {} ColumnDesc( const OUString& _rName , sal_Int32 _nField5 , const OUString& _aField6 diff --git a/include/connectivity/parameters.hxx b/include/connectivity/parameters.hxx index 476a8c2ca5f6..7a101df72893 100644 --- a/include/connectivity/parameters.hxx +++ b/include/connectivity/parameters.hxx @@ -80,12 +80,6 @@ namespace dbtools /// the indices of inner parameters which need to be filled when this concrete parameter is set ::std::vector< sal_Int32 > aInnerIndexes; - /// default ctor - ParameterMetaData() - :eType( ParameterClassification::FilledExternally ) - { - } - /// ctor with composer column ParameterMetaData( const css::uno::Reference< css::beans::XPropertySet >& _rxColumn ) :eType ( ParameterClassification::FilledExternally ) |