summaryrefslogtreecommitdiffstats
path: root/sc/inc/column.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-02-08 15:08:29 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-02-08 18:33:19 -0500
commit8ff0331bff9db9206e27558aca3958b65afb044b (patch)
tree6e4a9bbd5bfdf10bdedc1d3f109b80692108391f /sc/inc/column.hxx
parentLet's use enum for better type safety. (diff)
downloadcore-8ff0331bff9db9206e27558aca3958b65afb044b.tar.gz
core-8ff0331bff9db9206e27558aca3958b65afb044b.zip
Move away from TypedScStrCollection in favor of STL's.
Diffstat (limited to 'sc/inc/column.hxx')
-rw-r--r--sc/inc/column.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index 2f58a92630d8..e5e78f39a95a 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -62,7 +62,7 @@ class ScMarkData;
class ScPatternAttr;
class ScStyleSheet;
class SvtBroadcaster;
-class TypedScStrCollection;
+class TypedStrData;
class ScProgress;
class ScPostIt;
struct ScFunctionData;
@@ -379,8 +379,8 @@ public:
/// Including current, may return -1
SCsROW GetNextUnprotected( SCROW nRow, bool bUp ) const;
- void GetFilterEntries(SCROW nStartRow, SCROW nEndRow, TypedScStrCollection& rStrings, bool& rHasDates);
- bool GetDataEntries(SCROW nRow, TypedScStrCollection& rStrings, bool bLimit);
+ void GetFilterEntries(SCROW nStartRow, SCROW nEndRow, std::vector<TypedStrData>& rStrings, bool& rHasDates);
+ bool GetDataEntries(SCROW nRow, std::set<TypedStrData>& rStrings, bool bLimit);
void UpdateInsertTabAbs(SCTAB nNewPos);
bool TestTabRefAbs(SCTAB nTable);