diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-09-10 21:57:41 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-09-12 09:09:59 +0100 |
commit | 07f9a847f027139d75ac5eb7c8b48a8bb8cb1324 (patch) | |
tree | 1a28b42b812d579b65ae3d6f41d393c46ae06fbc /dbaccess | |
parent | 3127405547d3d4fa5f1f98bab187e7ac19d76b73 (diff) |
callcatcher: various unused methods
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/RowSetBase.cxx | 6 | ||||
-rw-r--r-- | dbaccess/source/core/api/RowSetBase.hxx | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/dbaccess/source/core/api/RowSetBase.cxx b/dbaccess/source/core/api/RowSetBase.cxx index 33b03717be01..4dbe052563f2 100644 --- a/dbaccess/source/core/api/RowSetBase.cxx +++ b/dbaccess/source/core/api/RowSetBase.cxx @@ -1553,12 +1553,6 @@ void ORowSetNotifier::fire() return m_pImpl->aChangedColumns; } -::std::vector<Any>& ORowSetNotifier::getChangedBookmarks() const -{ - OSL_ENSURE(m_pImpl.get(),"Illegal CTor call, use the other one!"); - return m_pImpl->aChangedBookmarks; -} - void ORowSetNotifier::firePropertyChange() { OSL_ENSURE(m_pImpl.get(),"Illegal CTor call, use the other one!"); diff --git a/dbaccess/source/core/api/RowSetBase.hxx b/dbaccess/source/core/api/RowSetBase.hxx index 2a931d5af376..c7f8bcef663c 100644 --- a/dbaccess/source/core/api/RowSetBase.hxx +++ b/dbaccess/source/core/api/RowSetBase.hxx @@ -416,7 +416,6 @@ namespace dbaccess /** use this one to store the inde of the changed column values */ ::std::vector<sal_Int32>& getChangedColumns() const; - ::std::vector<com::sun::star::uno::Any>& getChangedBookmarks() const; }; |