summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-12-08 18:09:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-12-10 09:28:16 +0000
commitd0b590fe19b45e2248adff22c6fe61a4049a7db8 (patch)
tree36ff9d9f0a7799595062d70c262395abea2400c5 /sd
parent993dae8a904b07b6db2b8854feae353f42836c5a (diff)
callcatcher: remove unused rtf filter and associated methods
update and remove newly unused code, mostly original rtf filter Change-Id: I2dd302851ee6fad62d79fbc81cb8a61a861396db
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/app/sdxfer.cxx5
-rw-r--r--sd/source/ui/inc/sdxfer.hxx5
2 files changed, 0 insertions, 10 deletions
diff --git a/sd/source/ui/app/sdxfer.cxx b/sd/source/ui/app/sdxfer.cxx
index 88f1c6d7a79d..fffbf29f834f 100644
--- a/sd/source/ui/app/sdxfer.cxx
+++ b/sd/source/ui/app/sdxfer.cxx
@@ -773,11 +773,6 @@ void SdTransferable::AddUserData (const ::boost::shared_ptr<UserData>& rpData)
maUserData.push_back(rpData);
}
-void SdTransferable::RemoveUserData (const ::boost::shared_ptr<UserData>& rpData)
-{
- maUserData.erase(::std::find(maUserData.begin(), maUserData.end(), rpData));
-}
-
sal_Int32 SdTransferable::GetUserDataCount (void) const
{
return maUserData.size();
diff --git a/sd/source/ui/inc/sdxfer.hxx b/sd/source/ui/inc/sdxfer.hxx
index 080c304d770f..66e36345d069 100644
--- a/sd/source/ui/inc/sdxfer.hxx
+++ b/sd/source/ui/inc/sdxfer.hxx
@@ -96,11 +96,6 @@ public:
*/
void AddUserData (const ::boost::shared_ptr<UserData>& rpData);
- /** Remove a previously added user data object. When the object
- was never added or removed before then this call is ignored.
- */
- void RemoveUserData (const ::boost::shared_ptr<UserData>& rpData);
-
/** Return the number of user data objects.
*/
sal_Int32 GetUserDataCount (void) const;