summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/file
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/file')
-rw-r--r--connectivity/source/inc/file/FConnection.hxx3
-rw-r--r--connectivity/source/inc/file/FStatement.hxx1
-rw-r--r--connectivity/source/inc/file/fcode.hxx8
-rw-r--r--connectivity/source/inc/file/fcomp.hxx1
4 files changed, 0 insertions, 13 deletions
diff --git a/connectivity/source/inc/file/FConnection.hxx b/connectivity/source/inc/file/FConnection.hxx
index 2b6bc47069f6..eaede692c871 100644
--- a/connectivity/source/inc/file/FConnection.hxx
+++ b/connectivity/source/inc/file/FConnection.hxx
@@ -83,9 +83,6 @@ namespace connectivity
css::uno::RuntimeException,
css::uno::DeploymentException);
-
- void closeAllStatements () throw( ::com::sun::star::sdbc::SQLException);
-
// OComponentHelper
virtual void SAL_CALL disposing() SAL_OVERRIDE;
// XInterface
diff --git a/connectivity/source/inc/file/FStatement.hxx b/connectivity/source/inc/file/FStatement.hxx
index 356a40e997b1..fc481ed47813 100644
--- a/connectivity/source/inc/file/FStatement.hxx
+++ b/connectivity/source/inc/file/FStatement.hxx
@@ -112,7 +112,6 @@ namespace connectivity
OSQLAnalyzer* createAnalyzer();
void closeResultSet() throw (css::sdbc::SQLException, css::uno::RuntimeException, std::exception);
- sal_Int32 getPrecision ( sal_Int32 sqlType);
void disposeResultSet();
void GetAssignValues();
diff --git a/connectivity/source/inc/file/fcode.hxx b/connectivity/source/inc/file/fcode.hxx
index 2c59dfd9f44b..725e0f28ccdb 100644
--- a/connectivity/source/inc/file/fcode.hxx
+++ b/connectivity/source/inc/file/fcode.hxx
@@ -76,7 +76,6 @@ namespace connectivity
virtual void setValue(const ORowSetValue& _rVal) = 0;
sal_Int32 getDBType() const {return m_eDBType;}
- virtual OEvaluateSet* preProcess(OBoolOperator* pOp, OOperand* pRight = 0);
inline bool isValid() const;
TYPEINFO_OVERRIDE();
@@ -90,7 +89,6 @@ namespace connectivity
OOperandRow(sal_uInt16 _nPos, sal_Int32 _rType);
public:
- sal_uInt16 getRowPos() const {return m_nRowPos;}
virtual const ORowSetValue& getValue() const SAL_OVERRIDE;
virtual void setValue(const ORowSetValue& _rVal) SAL_OVERRIDE;
void bindValue(const OValueRefRow& _pRow); // Bind to the value that the operand represents
@@ -108,7 +106,6 @@ namespace connectivity
OOperandAttr(sal_uInt16 _nPos,
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& _xColumn);
- virtual OEvaluateSet* preProcess(OBoolOperator* pOp, OOperand* pRight = 0) SAL_OVERRIDE;
TYPEINFO_OVERRIDE();
};
@@ -202,8 +199,6 @@ namespace connectivity
{
public:
virtual void Exec(OCodeStack&) = 0;
- virtual sal_uInt16 getRequestedOperands() const; // Count of requested operands
- // Defaults to 2
TYPEINFO_OVERRIDE();
};
@@ -225,7 +220,6 @@ namespace connectivity
protected:
virtual void Exec(OCodeStack&) SAL_OVERRIDE;
virtual bool operate(const OOperand*, const OOperand* = NULL) const SAL_OVERRIDE;
- virtual sal_uInt16 getRequestedOperands() const SAL_OVERRIDE;
};
class OOp_AND : public OBoolOperator
@@ -251,7 +245,6 @@ namespace connectivity
TYPEINFO_OVERRIDE();
public:
virtual void Exec(OCodeStack&) SAL_OVERRIDE;
- virtual sal_uInt16 getRequestedOperands() const SAL_OVERRIDE;
virtual bool operate(const OOperand*, const OOperand* = NULL) const SAL_OVERRIDE;
};
@@ -366,7 +359,6 @@ namespace connectivity
{
public:
virtual void Exec(OCodeStack&) SAL_OVERRIDE;
- virtual sal_uInt16 getRequestedOperands() const SAL_OVERRIDE;
virtual ORowSetValue operate(const ORowSetValue& lhs) const = 0;
TYPEINFO_OVERRIDE();
diff --git a/connectivity/source/inc/file/fcomp.hxx b/connectivity/source/inc/file/fcomp.hxx
index 7f09023ae4b6..5b0d52c8b644 100644
--- a/connectivity/source/inc/file/fcomp.hxx
+++ b/connectivity/source/inc/file/fcomp.hxx
@@ -65,7 +65,6 @@ namespace connectivity
void Clean();
bool isClean() const {return m_aCodeList.empty();}
bool hasCode() const {return !isClean();}
- bool hasORCondition() const {return m_bORCondition;}
void setOrigColumns(const OFileColumns& rCols) { m_orgColumns = rCols; }
const OFileColumns getOrigColumns() const { return m_orgColumns; }
protected: