summaryrefslogtreecommitdiff
path: root/formula
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-03-06 11:35:11 +0200
committerTor Lillqvist <tml@collabora.com>2015-03-06 11:40:00 +0200
commitabbd86925dab2621f38c85d8be8772ca56f037f6 (patch)
tree4db7645925b2f054ee783f8fc2ad1e76cd684816 /formula
parent0ab2973f84234dccf9cc22ffd179039065e97df0 (diff)
Add a few SAL_INFOs
Change-Id: I252987d6c5e5da56a83742c96b4e86abbb7108c6
Diffstat (limited to 'formula')
-rw-r--r--formula/source/core/api/vectortoken.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/formula/source/core/api/vectortoken.cxx b/formula/source/core/api/vectortoken.cxx
index b0077aa83b45..99f7decd06fc 100644
--- a/formula/source/core/api/vectortoken.cxx
+++ b/formula/source/core/api/vectortoken.cxx
@@ -42,7 +42,10 @@ bool VectorRefArray::isValid() const
}
SingleVectorRefToken::SingleVectorRefToken( const VectorRefArray& rArray, size_t nReqLength, size_t nArrayLength ) :
- FormulaToken(svSingleVectorRef, ocPush), maArray(rArray), mnRequestedLength(nReqLength), mnArrayLength(nArrayLength) {}
+ FormulaToken(svSingleVectorRef, ocPush), maArray(rArray), mnRequestedLength(nReqLength), mnArrayLength(nArrayLength)
+{
+ SAL_INFO("formula.core", "Created SingleVectorRefToken nReqLength=" << nReqLength << " nArrayLength=" << nArrayLength);
+}
FormulaToken* SingleVectorRefToken::Clone() const
{
@@ -64,7 +67,10 @@ DoubleVectorRefToken::DoubleVectorRefToken(
size_t nRefRowSize, bool bStartFixed, bool bEndFixed ) :
FormulaToken(svDoubleVectorRef, ocPush),
maArrays(rArrays), mnRequestedLength(nReqLength), mnArrayLength(nArrayLength),
- mnRefRowSize(nRefRowSize), mbStartFixed(bStartFixed), mbEndFixed(bEndFixed) {}
+ mnRefRowSize(nRefRowSize), mbStartFixed(bStartFixed), mbEndFixed(bEndFixed)
+{
+ SAL_INFO("formula.core", "Created DoubleVectorRefToken nReqLength=" << nReqLength << " nArrayLength=" << nArrayLength);
+}
FormulaToken* DoubleVectorRefToken::Clone() const
{