diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-08-05 20:28:03 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-08-06 00:59:55 +0200 |
commit | 1e2964e55e6fc791b911998ca710a9f174c3d1ef (patch) | |
tree | 3b4ae1a90db61da01f02080fe4ef99ef9a5437d9 /sc/inc/column.hxx | |
parent | 78b55ad11365bb97def308071bc45ca52cc557c7 (diff) |
skip hidden rows when moving with the cursor, fdo#45020
Change-Id: I3b12d774914599489dea2bb711b2d057111b677b
Diffstat (limited to 'sc/inc/column.hxx')
-rw-r--r-- | sc/inc/column.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index 6f776e1cc810..6bc8c8c2f5b7 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -389,6 +389,9 @@ public: private: ScBaseCell* CloneCell(SCSIZE nIndex, sal_uInt16 nFlags, ScDocument& rDestDoc, const ScAddress& rDestPos); + + SCROW FindNextVisibleRowWithContent(SCROW nRow, bool bForward) const; + SCROW FindNextVisibleRow(SCROW nRow, bool bForward) const; }; |