diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-08-09 15:49:15 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-08-09 15:52:34 -0400 |
commit | a81389fb840f21f855d0f7c900821587d33782da (patch) | |
tree | e88ddf82390a22dd173c4d9270a852c3e01e17b4 /sc/inc/reftokenhelper.hxx | |
parent | b2bd33ea253952ad3f8b4bfe4bd54c4af16cb86e (diff) |
Correctly import from Excel charts with multiple ranges.
This was "fixed" in i#107275, but the fix only worked in locales
where the range/argument separator was ';' (e.g. German locale).
This is the correct fix that works in all locales regardless of
the separator.
Diffstat (limited to 'sc/inc/reftokenhelper.hxx')
-rw-r--r-- | sc/inc/reftokenhelper.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/reftokenhelper.hxx b/sc/inc/reftokenhelper.hxx index 36d28f156780..9119e3eb9b82 100644 --- a/sc/inc/reftokenhelper.hxx +++ b/sc/inc/reftokenhelper.hxx @@ -55,7 +55,7 @@ public: */ static void compileRangeRepresentation( ::std::vector<ScTokenRef>& rRefTokens, const ::rtl::OUString& rRangeStr, ScDocument* pDoc, - ::formula::FormulaGrammar::Grammar eGrammar = ::formula::FormulaGrammar::GRAM_ENGLISH); + const sal_Unicode cSep, ::formula::FormulaGrammar::Grammar eGrammar); static bool getRangeFromToken(ScRange& rRange, const ScTokenRef& pToken, bool bExternal = false); |