diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-15 16:37:14 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-18 23:22:40 -0400 |
commit | 3629a512b5afb09f48f47f1994d4708c748c45e6 (patch) | |
tree | 0c96976b51a08bd9d6f4d8303c3783d5edce4978 /formula | |
parent | 86c3961b4cdf4689a04568d2d109aeeb11257b1c (diff) |
New constructor that takes both numeric and string arrays.
Change-Id: I9c48f340a0349e5f1ba772fcd783924c79b07616
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/api/vectortoken.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/formula/source/core/api/vectortoken.cxx b/formula/source/core/api/vectortoken.cxx index 55ab18e27932..961eda6d60c9 100644 --- a/formula/source/core/api/vectortoken.cxx +++ b/formula/source/core/api/vectortoken.cxx @@ -14,6 +14,8 @@ namespace formula { VectorRefArray::VectorRefArray() : mpNumericArray(NULL), mpStringArray(NULL) {} VectorRefArray::VectorRefArray( const double* pArray ) : mpNumericArray(pArray), mpStringArray(NULL) {} VectorRefArray::VectorRefArray( rtl_uString** pArray ) : mpNumericArray(NULL), mpStringArray(pArray) {} +VectorRefArray::VectorRefArray( const double* pNumArray, rtl_uString** pStrArray ) : + mpNumericArray(pNumArray), mpStringArray(pStrArray) {} bool VectorRefArray::isValid() const { |