diff options
Diffstat (limited to 'protocols/Skype/src/skype_transfer.cpp')
-rw-r--r-- | protocols/Skype/src/skype_transfer.cpp | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/protocols/Skype/src/skype_transfer.cpp b/protocols/Skype/src/skype_transfer.cpp deleted file mode 100644 index 437d016b6d..0000000000 --- a/protocols/Skype/src/skype_transfer.cpp +++ /dev/null @@ -1,29 +0,0 @@ -#include "skype_proto.h"
-
-//LIST<FileTransfer> CSkypeProto::fileTransferList(1);
-
-FileTransfer *CSkypeProto::FindTransfer(SEBinary guid)
-{
- for (int i = 0; i < this->fileTransferList.getCount(); i++)
- {
- if (this->fileTransferList[i]->guid == guid)
- {
- return this->fileTransferList[i];
- }
- }
-
- return NULL;
-}
-
-FileTransfer *CSkypeProto::FindFileTransfer(CTransfer::Ref transfer)
-{
- for (int i = 0; i < this->fileTransferList.getCount(); i++)
- {
- if (this->fileTransferList[i]->transfers.contains(transfer))
- {
- return this->fileTransferList[i];
- }
- }
-
- return NULL;
-}
\ No newline at end of file |