diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-07-19 23:18:30 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-09-18 00:15:13 +0200 |
commit | 862846ef4797bdcc0f2cd78178bf3e3d451222c6 (patch) | |
tree | ef116a9d28a6e9ac1f6578dcf13e47298ad3fafd | |
parent | 99b353e00c2cdcae92c1632e4e14fa4033ba2277 (diff) |
fix assert in number format orcus import
Change-Id: Ib0a8ce074c9245fa8ba66008524887f015c7bf76
-rw-r--r-- | sc/source/filter/orcus/interface.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/orcus/interface.cxx b/sc/source/filter/orcus/interface.cxx index b0ce0a4764f9..b6f05b4f2522 100644 --- a/sc/source/filter/orcus/interface.cxx +++ b/sc/source/filter/orcus/interface.cxx @@ -906,7 +906,7 @@ void ScOrcusStyles::number_format::applyToItemSet(SfxItemSet& rSet, ScDocument& { if (nCheckPos == 0) { - rSet.Put(SfxUInt32Item(nKey, ATTR_VALUE_FORMAT)); + rSet.Put(SfxUInt32Item(ATTR_VALUE_FORMAT, nKey)); } } else |