diff options
Diffstat (limited to 'sc/inc/dociter.hxx')
-rw-r--r-- | sc/inc/dociter.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/dociter.hxx b/sc/inc/dociter.hxx index 3af9d365bd32..209ba12ed675 100644 --- a/sc/inc/dociter.hxx +++ b/sc/inc/dociter.hxx @@ -131,9 +131,9 @@ private: public: DataAccessInternal(const ScDBQueryDataIterator* pParent, ScDBQueryParamInternal* pParam, ScDocument* pDoc); virtual ~DataAccessInternal(); - virtual bool getCurrent(Value& rValue); - virtual bool getFirst(Value& rValue); - virtual bool getNext(Value& rValue); + virtual bool getCurrent(Value& rValue) SAL_OVERRIDE; + virtual bool getFirst(Value& rValue) SAL_OVERRIDE; + virtual bool getNext(Value& rValue) SAL_OVERRIDE; private: void incBlock(); @@ -159,9 +159,9 @@ private: public: DataAccessMatrix(const ScDBQueryDataIterator* pParent, ScDBQueryParamMatrix* pParam); virtual ~DataAccessMatrix(); - virtual bool getCurrent(Value& rValue); - virtual bool getFirst(Value& rValue); - virtual bool getNext(Value& rValue); + virtual bool getCurrent(Value& rValue) SAL_OVERRIDE; + virtual bool getFirst(Value& rValue) SAL_OVERRIDE; + virtual bool getNext(Value& rValue) SAL_OVERRIDE; private: bool isValidQuery(SCROW mnRow, const ScMatrix& rMat) const; |