diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-04-05 05:29:01 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-04-05 05:29:01 +0200 |
commit | 9646685f3ead54fc67bc457a4804defce8a88e05 (patch) | |
tree | 22e36869f40183abd0a58b5077ef14aac0d7d27f | |
parent | afcf1800440aa5c4b9671bc402ea8fff9d9154a4 (diff) |
this does hopefully no longer result in a crash
-rw-r--r-- | sc/source/core/data/sortparam.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sc/source/core/data/sortparam.cxx b/sc/source/core/data/sortparam.cxx index 21bf327bfaf8..1cafc926bdf3 100644 --- a/sc/source/core/data/sortparam.cxx +++ b/sc/source/core/data/sortparam.cxx @@ -182,14 +182,11 @@ ScSortParam::ScSortParam( const ScSubTotalParam& rSub, const ScSortParam& rOld ) for (i=0; i<MAXSUBTOTAL; i++) if (rSub.bGroupActive[i]) { -#if 0 -// FIXME this crashes in sc_unoapi currently; table3.cxx has nMaxSorts = 3... ScSortKeyState key; key.bDoSort = true; key.nField = rSub.nField[i]; key.bAscending = rSub.bAscending; maKeyState.push_back(key); -#endif } // dann dahinter die alten Einstellungen |