diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-09-16 10:35:22 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-09-16 10:35:22 +0200 |
commit | fbf28ef12b3087bd1df7b79645685955d60ba911 (patch) | |
tree | 492417136dfefefda53b5fbecf4b402c3b943724 /sc/inc/detfunc.hxx | |
parent | d8bb8c4fb850b9de762567ed7d337972467470d6 (diff) |
calc-jump-on-formula-ref-sc.diff: Migrated
n#464359, i#101018
allow ctrl-[ and ctrl-] to jump to references used in a formula expression.
Diffstat (limited to 'sc/inc/detfunc.hxx')
-rw-r--r-- | sc/inc/detfunc.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/inc/detfunc.hxx b/sc/inc/detfunc.hxx index 5c57d32af898..fb9d0ac9569e 100644 --- a/sc/inc/detfunc.hxx +++ b/sc/inc/detfunc.hxx @@ -32,6 +32,9 @@ #include <tools/gen.hxx> #include <tools/color.hxx> #include "scdllapi.h" +#include "token.hxx" + +#include <vector> class SdrObject; class SdrPage; @@ -43,6 +46,7 @@ class ScDetectiveData; class ScDocument; class ScAddress; class ScRange; +class ScRangeList; #define SC_DET_MAXCIRCLE 1000 @@ -144,6 +148,9 @@ public: BOOL MarkInvalid(BOOL& rOverflow); + void GetAllPreds(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, ::std::vector<ScSharedTokenRef>& rRefTokens); + void GetAllSuccs(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, ::std::vector<ScSharedTokenRef>& rRefTokens); + static void UpdateAllComments( ScDocument& rDoc ); // on all tables void UpdateAllArrowColors(); // on all tables |