summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--protocols/SkypeWeb/SkypeWeb_10.vcxproj1
-rw-r--r--protocols/SkypeWeb/SkypeWeb_10.vcxproj.filters3
-rw-r--r--protocols/SkypeWeb/SkypeWeb_12.vcxproj1
-rw-r--r--protocols/SkypeWeb/SkypeWeb_12.vcxproj.filters3
-rw-r--r--protocols/SkypeWeb/src/requests/endpoint.h1
-rw-r--r--protocols/SkypeWeb/src/requests/logout.h35
6 files changed, 0 insertions, 44 deletions
diff --git a/protocols/SkypeWeb/SkypeWeb_10.vcxproj b/protocols/SkypeWeb/SkypeWeb_10.vcxproj
index 174b7791a6..100563adff 100644
--- a/protocols/SkypeWeb/SkypeWeb_10.vcxproj
+++ b/protocols/SkypeWeb/SkypeWeb_10.vcxproj
@@ -207,7 +207,6 @@
<ClInclude Include="src\requests\endpoint.h" />
<ClInclude Include="src\requests\history.h" />
<ClInclude Include="src\requests\login.h" />
- <ClInclude Include="src\requests\logout.h" />
<ClInclude Include="src\requests\messages.h" />
<ClInclude Include="src\requests\poll.h" />
<ClInclude Include="src\requests\profile.h" />
diff --git a/protocols/SkypeWeb/SkypeWeb_10.vcxproj.filters b/protocols/SkypeWeb/SkypeWeb_10.vcxproj.filters
index d80d7dd5c6..13680565b6 100644
--- a/protocols/SkypeWeb/SkypeWeb_10.vcxproj.filters
+++ b/protocols/SkypeWeb/SkypeWeb_10.vcxproj.filters
@@ -45,9 +45,6 @@
<ClInclude Include="src\requests\login.h">
<Filter>Header Files\requests</Filter>
</ClInclude>
- <ClInclude Include="src\requests\logout.h">
- <Filter>Header Files\requests</Filter>
- </ClInclude>
<ClInclude Include="src\requests\contacts.h">
<Filter>Header Files\requests</Filter>
</ClInclude>
diff --git a/protocols/SkypeWeb/SkypeWeb_12.vcxproj b/protocols/SkypeWeb/SkypeWeb_12.vcxproj
index c87a467013..fe70776904 100644
--- a/protocols/SkypeWeb/SkypeWeb_12.vcxproj
+++ b/protocols/SkypeWeb/SkypeWeb_12.vcxproj
@@ -209,7 +209,6 @@
<ClInclude Include="src\requests\contacts.h" />
<ClInclude Include="src\requests\history.h" />
<ClInclude Include="src\requests\login.h" />
- <ClInclude Include="src\requests\logout.h" />
<ClInclude Include="src\requests\messages.h" />
<ClInclude Include="src\requests\profile.h" />
<ClInclude Include="src\requests\endpoint.h" />
diff --git a/protocols/SkypeWeb/SkypeWeb_12.vcxproj.filters b/protocols/SkypeWeb/SkypeWeb_12.vcxproj.filters
index 218d0d8e6f..43053b73e3 100644
--- a/protocols/SkypeWeb/SkypeWeb_12.vcxproj.filters
+++ b/protocols/SkypeWeb/SkypeWeb_12.vcxproj.filters
@@ -45,9 +45,6 @@
<ClInclude Include="src\requests\login.h">
<Filter>Header Files\requests</Filter>
</ClInclude>
- <ClInclude Include="src\requests\logout.h">
- <Filter>Header Files\requests</Filter>
- </ClInclude>
<ClInclude Include="src\requests\contacts.h">
<Filter>Header Files\requests</Filter>
</ClInclude>
diff --git a/protocols/SkypeWeb/src/requests/endpoint.h b/protocols/SkypeWeb/src/requests/endpoint.h
index e0fefa07a3..0f83d2b769 100644
--- a/protocols/SkypeWeb/src/requests/endpoint.h
+++ b/protocols/SkypeWeb/src/requests/endpoint.h
@@ -42,7 +42,6 @@ public:
Headers
<< CHAR_VALUE("Accept", "application/json, text/javascript")
<< FORMAT_VALUE("RegistrationToken", "registrationToken=%s", regToken);
-
}
};
diff --git a/protocols/SkypeWeb/src/requests/logout.h b/protocols/SkypeWeb/src/requests/logout.h
deleted file mode 100644
index 207a54f7d7..0000000000
--- a/protocols/SkypeWeb/src/requests/logout.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
-Copyright (c) 2015 Miranda NG project (http://miranda-ng.org)
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation version 2
-of the License.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef _SKYPE_REQUEST_LOGOUT_H_
-#define _SKYPE_REQUEST_LOGOUT_H_
-
-class LogoutRequest : public HttpRequest
-{
-public:
- LogoutRequest() : HttpRequest(REQUEST_GET, "login.skype.com/logout")
- {
- flags |= NLHRF_REDIRECT;
- Url
- << INT_VALUE("client_id", 578134)
- << CHAR_VALUE("redirect_uri", "https%3A%2F%2Fweb.skype.com&intsrc=client-_-webapp-_-production-_-go-signin");
- Headers
- << CHAR_VALUE("Referer", "https://web.skype.com/");
- }
-};
-
-#endif //_SKYPE_REQUEST_LOGOUT_H_