diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-12-10 16:31:56 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-12-10 16:31:56 -0500 |
commit | a4106c6cb8995a0471df59de5706447f59f6796e (patch) | |
tree | c7e7a5f8d56481e5035a7af11f9ff0ef0f52987f /sc/inc/rangelst.hxx | |
parent | 75c0b752865ac42b9c70c9588f995a86a0e62a22 (diff) |
Removed ScRangePairList::at() also, in favor of operator[].
Diffstat (limited to 'sc/inc/rangelst.hxx')
-rw-r--r-- | sc/inc/rangelst.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/rangelst.hxx b/sc/inc/rangelst.hxx index 4c65e31e9e36..60acec5ca3a7 100644 --- a/sc/inc/rangelst.hxx +++ b/sc/inc/rangelst.hxx @@ -120,7 +120,7 @@ public: ScRangePair* Remove(ScRangePair* pAdr); size_t size() const; - ScRangePair* at( size_t idx ); + ScRangePair* operator[](size_t idx); const ScRangePair* operator[](size_t idx) const; private: |