diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-08-09 15:44:23 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-08-09 16:14:33 +0200 |
commit | 36bc405d72f1d1898437dfa25d8cb4bdfba63e06 (patch) | |
tree | 2679cc78c4e596284cc8725d3b60f4aec1c630b9 /sc/inc/table.hxx | |
parent | 1150a1a8eb1759160b9d88e99d95e5ad082f40be (diff) |
fix column navigation with CTRL + direction, fdo#45020
Change-Id: I422b1b85e539d4e2819b93deaf8543410b44b9bd
Diffstat (limited to 'sc/inc/table.hxx')
-rw-r--r-- | sc/inc/table.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index bb365dbf29d4..87483266ba82 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -424,7 +424,7 @@ public: SCSIZE GetEmptyLinesInBlock( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow, ScDirection eDir ); - void FindAreaPos( SCCOL& rCol, SCROW& rRow, SCsCOL nMovX, SCsROW nMovY ); + void FindAreaPos( SCCOL& rCol, SCROW& rRow, ScMoveDirection eDirection ); void GetNextPos( SCCOL& rCol, SCROW& rRow, SCsCOL nMovX, SCsROW nMovY, bool bMarked, bool bUnprotected, const ScMarkData& rMark ); @@ -913,6 +913,10 @@ private: void CopyPrintRange(const ScTable& rTable); + SCCOL FindNextVisibleColWithContent(SCCOL nCol, bool bRight, SCROW nRow); + + SCCOL FindNextVisibleCol(SCCOL nCol, bool bRight); + /** * Use this to iterate through non-empty visible cells in a single column. */ |