summaryrefslogtreecommitdiffstats
path: root/sc/inc/compare.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2013-10-17 21:00:00 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-10-18 23:22:42 -0400
commit60cc84c95364601190dd6c9d731d73c11dc83366 (patch)
tree1a91fec773030d33aa8ecf6ca67cc7a8ba10eb26 /sc/inc/compare.hxx
parentFix brace styles. (diff)
downloadcore-60cc84c95364601190dd6c9d731d73c11dc83366.tar.gz
core-60cc84c95364601190dd6c9d731d73c11dc83366.zip
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.hxx5
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;