summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/file
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-02-24 09:07:21 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-25 08:05:51 +0100
commitb61cfadb71597dd132d6a783484e6763c9361bde (patch)
tree5dcd65f784b36dc1e3aa6f8f9afe4f7ff9efb69f /connectivity/source/inc/file
parent4187b2beaa3d1294cd5c76ec0b662f3f4fadc421 (diff)
loplugin:unusedfields in connectivity
Change-Id: I72b6c34151815bef0f99f81ef67529b52fd33150 Reviewed-on: https://gerrit.libreoffice.org/68277 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity/source/inc/file')
-rw-r--r--connectivity/source/inc/file/FResultSet.hxx4
-rw-r--r--connectivity/source/inc/file/fanalyzer.hxx2
-rw-r--r--connectivity/source/inc/file/fcomp.hxx1
3 files changed, 0 insertions, 7 deletions
diff --git a/connectivity/source/inc/file/FResultSet.hxx b/connectivity/source/inc/file/FResultSet.hxx
index d223c0909d4e..155f7a6e2413 100644
--- a/connectivity/source/inc/file/FResultSet.hxx
+++ b/connectivity/source/inc/file/FResultSet.hxx
@@ -76,7 +76,6 @@ namespace connectivity
OValueRefRow m_aSelectRow;
OValueRefRow m_aRow;
OValueRefRow m_aEvaluateRow; // contains all values of a row
- OValueRefRow m_aParameterRow;
OValueRefRow m_aInsertRow; // needed for insert by cursor
ORefAssignValues m_aAssignValues; // needed for insert,update and parameters
// to compare with the restrictions
@@ -88,7 +87,6 @@ namespace connectivity
std::unique_ptr<OSortIndex> m_pSortIndex;
::rtl::Reference<connectivity::OSQLColumns> m_xColumns; // this are the select columns
- ::rtl::Reference<connectivity::OSQLColumns> m_xParamColumns;
rtl::Reference<OFileTable> m_pTable;
connectivity::OSQLParseNode* m_pParseTree;
@@ -262,9 +260,7 @@ namespace connectivity
void doTableSpecials(const OSQLTable& _xTable);
sal_Int32 getRowCountResult() const { return m_nRowCountResult; }
- void setParameterRow(const OValueRefRow& _rParaRow) { m_aParameterRow = _rParaRow; }
void setEvaluationRow(const OValueRefRow& _aRow) { m_aEvaluateRow = _aRow; }
- void setParameterColumns(const ::rtl::Reference<connectivity::OSQLColumns>& _xParamColumns) { m_xParamColumns = _xParamColumns; }
void setAssignValues(const ORefAssignValues& _aAssignValues) { m_aAssignValues = _aAssignValues; }
void setBindingRow(const OValueRefRow& _aRow) { m_aRow = _aRow; }
void setSelectRow(const OValueRefRow& _rRow)
diff --git a/connectivity/source/inc/file/fanalyzer.hxx b/connectivity/source/inc/file/fanalyzer.hxx
index bf0bf810299d..a2463870d1c9 100644
--- a/connectivity/source/inc/file/fanalyzer.hxx
+++ b/connectivity/source/inc/file/fanalyzer.hxx
@@ -58,8 +58,6 @@ namespace connectivity
*/
void bindParameterRow(OValueRefRow const & _pRow);
- void setIndexes(const css::uno::Reference< css::container::XNameAccess>& _xIndexes);
-
void dispose();
void start(OSQLParseNode const * pSQLParseNode);
bool hasRestriction() const;
diff --git a/connectivity/source/inc/file/fcomp.hxx b/connectivity/source/inc/file/fcomp.hxx
index 5b290c2f7212..3f1d0d9d545d 100644
--- a/connectivity/source/inc/file/fcomp.hxx
+++ b/connectivity/source/inc/file/fcomp.hxx
@@ -41,7 +41,6 @@ namespace connectivity
OCodeList m_aCodeList;
css::uno::Reference< css::container::XNameAccess> m_orgColumns; // in filecurs this are the filecolumns
OSQLAnalyzer* m_pAnalyzer;
- css::uno::Reference< css::container::XNameAccess> m_xIndexes;
sal_Int32 m_nParamCounter;
public:
OPredicateCompiler(OSQLAnalyzer* pAnalyzer);