diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-22 13:04:20 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-22 13:04:20 +0000 |
commit | f35fa0bf945467eb9a5e9e6bdfa52fa59499e7fe (patch) | |
tree | c81997392f859135cb157ab658b4914c5b694c21 /protocols | |
parent | d073992e64122a52ec0b491dac85b97c7fc6d0de (diff) |
removed not needed file
vc2012 project fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@4506 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Skype/Skype_11.vcxproj | 1 | ||||
-rw-r--r-- | protocols/Skype/Skype_11.vcxproj.filters | 3 | ||||
-rw-r--r-- | protocols/Skype/src/skype_transfer.cpp | 29 |
3 files changed, 0 insertions, 33 deletions
diff --git a/protocols/Skype/Skype_11.vcxproj b/protocols/Skype/Skype_11.vcxproj index 05693a6037..d7ab2c8278 100644 --- a/protocols/Skype/Skype_11.vcxproj +++ b/protocols/Skype/Skype_11.vcxproj @@ -212,7 +212,6 @@ <ClCompile Include="src\skype_services.cpp" />
<ClCompile Include="src\skype_settings.cpp" />
<ClCompile Include="src\skype_subclassing.cpp" />
- <ClCompile Include="src\skype_transfer.cpp" />
<ClCompile Include="src\skype_utils.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/protocols/Skype/Skype_11.vcxproj.filters b/protocols/Skype/Skype_11.vcxproj.filters index 5e1e508cf7..9596201554 100644 --- a/protocols/Skype/Skype_11.vcxproj.filters +++ b/protocols/Skype/Skype_11.vcxproj.filters @@ -78,9 +78,6 @@ <ClCompile Include="src\skype_runtime.cpp">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="src\skype_transfer.cpp">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="src\aes\aes.c">
<Filter>Source Files\aes</Filter>
</ClCompile>
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 |