summaryrefslogtreecommitdiffstats
path: root/sc/inc/compare.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2013-10-17 21:03:12 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-10-18 23:22:42 -0400
commit10ccf6acde86601beb2d95c5b094cecd41beea2a (patch)
tree0c67d28dfc67477568f6ca571eef9d81cd2cb112 /sc/inc/compare.hxx
parentMove the compare-matrix code to ScMatrix, for much faster execution. (diff)
downloadcore-10ccf6acde86601beb2d95c5b094cecd41beea2a.tar.gz
core-10ccf6acde86601beb2d95c5b094cecd41beea2a.zip
Reduce the number of arguments. The first argument can go now.
Change-Id: Id2b9ca7b6e24edc0da4735c01798ab580fba910d
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 9ee2992e95c3..b4e4a50b2a96 100644
--- a/sc/inc/compare.hxx
+++ b/sc/inc/compare.hxx
@@ -62,7 +62,10 @@ private:
CompareOptions& operator=( const CompareOptions & );
};
-double CompareFunc( bool bIgnoreCase, const Compare& rComp, CompareOptions* pOptions = NULL );
+/** @param pOptions
+ NULL means case sensitivity document option is to be used!
+ */
+double CompareFunc( const Compare& rComp, CompareOptions* pOptions = NULL );
}