From 6a4113830257aa2b10377f474d0992b254dcd1fc Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Mon, 5 Oct 2015 16:22:45 +0000 Subject: SkypeWeb: small fix git-svn-id: http://svn.miranda-ng.org/main/trunk@15513 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/SkypeWeb/src/http_request.h | 2 +- protocols/SkypeWeb/src/skype_polling.cpp | 1 - protocols/SkypeWeb/src/skype_trouter.cpp | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/protocols/SkypeWeb/src/http_request.h b/protocols/SkypeWeb/src/http_request.h index 9f25884f6d..a652f6ae90 100644 --- a/protocols/SkypeWeb/src/http_request.h +++ b/protocols/SkypeWeb/src/http_request.h @@ -58,7 +58,7 @@ struct FORMAT_VALUE : public VALUE } }; -class HttpRequest : public NETLIBHTTPREQUEST, public MZeroedObject +class HttpRequest : protected NETLIBHTTPREQUEST, public MZeroedObject { HttpRequest& operator=(const HttpRequest&); // to prevent copying; diff --git a/protocols/SkypeWeb/src/skype_polling.cpp b/protocols/SkypeWeb/src/skype_polling.cpp index ee4d5f45c3..9083535a87 100644 --- a/protocols/SkypeWeb/src/skype_polling.cpp +++ b/protocols/SkypeWeb/src/skype_polling.cpp @@ -30,7 +30,6 @@ void CSkypeProto::PollingThread(void*) while ((nErrors < POLLING_ERRORS_LIMIT) && m_iStatus != ID_STATUS_OFFLINE) { PollRequest *request = new PollRequest(li); - request->nlc = m_pollingConnection; NLHR_PTR response(request->Send(m_hNetlibUser)); delete request; diff --git a/protocols/SkypeWeb/src/skype_trouter.cpp b/protocols/SkypeWeb/src/skype_trouter.cpp index 46e9688183..87edb6be49 100644 --- a/protocols/SkypeWeb/src/skype_trouter.cpp +++ b/protocols/SkypeWeb/src/skype_trouter.cpp @@ -142,7 +142,6 @@ void CSkypeProto::TRouterThread(void*) while (errors < POLLING_ERRORS_LIMIT && m_iStatus > ID_STATUS_OFFLINE) { TrouterPollRequest *request = new TrouterPollRequest(TRouter.socketIo, TRouter.connId, TRouter.st, TRouter.se, TRouter.sig, TRouter.instance, TRouter.ccid, TRouter.sessId); - request->nlc = m_TrouterConnection; NLHR_PTR response(request->Send(m_hNetlibUser)); delete request; if (response == NULL) -- cgit v1.2.3