summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorSantiago Martinez <smvarela@gmail.com>2012-02-22 21:38:16 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-02-23 13:00:04 +0000
commit38f487a7330df5c85845663d5b10d1069585f614 (patch)
treeeecd8116ffe83986b1f6eaa0e14cd319dca66c90 /sc
parentf881540b3295c17286f8003c7b897907bf9f57cb (diff)
Remove unused code in ScUserList
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/userlist.hxx2
-rw-r--r--sc/source/core/tool/userlist.cxx10
2 files changed, 0 insertions, 12 deletions
diff --git a/sc/inc/userlist.hxx b/sc/inc/userlist.hxx
index 5fa00ebe93a5..541c66e2bc65 100644
--- a/sc/inc/userlist.hxx
+++ b/sc/inc/userlist.hxx
@@ -92,9 +92,7 @@ public:
bool operator!=( const ScUserList& r ) const;
iterator begin();
- iterator end();
const_iterator begin() const;
- const_iterator end() const;
void clear();
size_t size() const;
void push_back(ScUserListData* p);
diff --git a/sc/source/core/tool/userlist.cxx b/sc/source/core/tool/userlist.cxx
index 4a97af052d21..28aecfc13296 100644
--- a/sc/source/core/tool/userlist.cxx
+++ b/sc/source/core/tool/userlist.cxx
@@ -345,21 +345,11 @@ ScUserList::iterator ScUserList::begin()
return maData.begin();
}
-ScUserList::iterator ScUserList::end()
-{
- return maData.end();
-}
-
ScUserList::const_iterator ScUserList::begin() const
{
return maData.begin();
}
-ScUserList::const_iterator ScUserList::end() const
-{
- return maData.end();
-}
-
void ScUserList::clear()
{
maData.clear();