summaryrefslogtreecommitdiffstats
path: root/sc/inc/queryparam.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2011-11-03 22:05:12 -0400
committerKohei Yoshida <kohei.yoshida@suse.com>2011-11-04 22:40:26 -0400
commit54673798f3b765a71c7f0080c6449625782c6a9b (patch)
tree8f06a14b4000bd46c9b3d146c81c4b1cb838648e /sc/inc/queryparam.hxx
parentsal_Bool to bool. (diff)
downloadcore-54673798f3b765a71c7f0080c6449625782c6a9b.tar.gz
core-54673798f3b765a71c7f0080c6449625782c6a9b.zip
Let's not use a hard-coded MAXQUERY all over the place.
For now, the maximum query size is determined by the size of the vector that holds the entries. For now, the size of the vector is fixed, and won't change. We may later work on making it dynamically sized, however...
Diffstat (limited to 'sc/inc/queryparam.hxx')
-rw-r--r--sc/inc/queryparam.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/queryparam.hxx b/sc/inc/queryparam.hxx
index 1515cd1df7bb..915422458bcf 100644
--- a/sc/inc/queryparam.hxx
+++ b/sc/inc/queryparam.hxx
@@ -60,7 +60,7 @@ protected:
ScQueryParamBase();
ScQueryParamBase(const ScQueryParamBase& r);
- mutable ::std::vector<ScQueryEntry> maEntries;
+ mutable std::vector<ScQueryEntry> maEntries;
};
// ============================================================================