diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-17 21:00:00 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-18 23:22:42 -0400 |
commit | 60cc84c95364601190dd6c9d731d73c11dc83366 (patch) | |
tree | 1a91fec773030d33aa8ecf6ca67cc7a8ba10eb26 /sc/inc/compare.hxx | |
parent | 4162c889f228593861965ecca732dbec01d82731 (diff) |
Move the compare-matrix code to ScMatrix, for much faster execution.
Change-Id: I3c4f255469b48cfd6f132503ff695e347d8ae912
Diffstat (limited to 'sc/inc/compare.hxx')
-rw-r--r-- | sc/inc/compare.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sc/inc/compare.hxx b/sc/inc/compare.hxx index 307b5311a8e3..9ee2992e95c3 100644 --- a/sc/inc/compare.hxx +++ b/sc/inc/compare.hxx @@ -35,7 +35,10 @@ struct Compare bool bVal[2]; bool bEmpty[2]; - Compare( OUString* p1, OUString* p2 ) + bool mbIgnoreCase; + + Compare( OUString* p1, OUString* p2 ) : + mbIgnoreCase(true) { pVal[0] = p1; pVal[1] = p2; |