diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-31 16:25:32 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-11-04 13:59:17 -0500 |
commit | 835fee82efb70b40b94f6babc2706ee1eb66dcf7 (patch) | |
tree | d83a10775a68412d4b6bddde3cf60d725062cc4f /sc/inc | |
parent | 8228f6736b91da06f439080665bdc389297bb5b7 (diff) |
Populate raw cell values using ScDocumentImport.
Also fix incorrect const methods. Methods that populate the document
model should not be marked const even if the compiler allows it.
Change-Id: Ic5d1670ce93c166d0f44ace04494fccab6eac275
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/tokenuno.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/tokenuno.hxx b/sc/inc/tokenuno.hxx index a323b6297db5..4287405a6ad2 100644 --- a/sc/inc/tokenuno.hxx +++ b/sc/inc/tokenuno.hxx @@ -43,7 +43,7 @@ public: ScTokenArray& rTokenArray, const com::sun::star::uno::Sequence< com::sun::star::sheet::FormulaToken >& rSequence ); static SC_DLLPUBLIC bool ConvertToTokenSequence( - ScDocument& rDoc, + const ScDocument& rDoc, com::sun::star::uno::Sequence< com::sun::star::sheet::FormulaToken >& rSequence, const ScTokenArray& rTokenArray ); }; |