summaryrefslogtreecommitdiff
path: root/sc/inc/formulalogger.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2016-11-03 21:55:18 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2016-11-05 08:07:47 -0400
commitfe7b4884a2c22e3089e2803824565fa6d1391e1b (patch)
tree420697f9fb98a1a1ad919a0746247bcbc7c6bef0 /sc/inc/formulalogger.hxx
parentc7aa57bc6b35a27aba265ce548397f282541253f (diff)
Dump the single cell vector reference info to the log.
Change-Id: If0ee6dca6642063501c728bec3b4e5d7b6401442
Diffstat (limited to 'sc/inc/formulalogger.hxx')
-rw-r--r--sc/inc/formulalogger.hxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/sc/inc/formulalogger.hxx b/sc/inc/formulalogger.hxx
index 0925d3056667..d63cf78b7ef1 100644
--- a/sc/inc/formulalogger.hxx
+++ b/sc/inc/formulalogger.hxx
@@ -16,6 +16,9 @@
class ScFormulaCell;
class ScDocument;
+class ScAddress;
+
+namespace formula { struct VectorRefArray; }
namespace sc {
@@ -74,6 +77,12 @@ public:
void addMessage( const OUString& rMsg );
/**
+ * Add to the log a vector reference information for a single
+ * reference.
+ */
+ void addRefMessage( const ScAddress& rPos, size_t nLen, const formula::VectorRefArray& rArray );
+
+ /**
* Call this when the group calculation has finished successfullly.
*/
void setCalcComplete();
@@ -106,6 +115,8 @@ public:
{
public:
void addMessage( const OUString& /*rMsg*/ ) { (void) this; /* loplugin:staticmethods */ }
+ void addRefMessage( const ScAddress& /*rPos*/, size_t /*nLen*/, const formula::VectorRefArray& /*rArray*/ )
+ { (void) this; /* loplugin:staticmethods */ }
void setCalcComplete() { (void) this; /* loplugin:staticmethods */ }
};