From 5b961e1a58a0e6f672961d6a83978001950304d7 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Tue, 3 May 2011 16:12:32 +0200 Subject: [PATCH] sipjreen: fix build --- src/sip/jreen/jabber.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/sip/jreen/jabber.cpp b/src/sip/jreen/jabber.cpp index 7d90cb303..0558c8a0a 100644 --- a/src/sip/jreen/jabber.cpp +++ b/src/sip/jreen/jabber.cpp @@ -29,6 +29,8 @@ #include #include #include +#include +#include #include #include @@ -125,10 +127,10 @@ JabberPlugin::setProxy( QNetworkProxy* proxy ) if(!m_client->connection()) { - m_client->setConnection(new TcpConnection(m_currentServer, m_currentPort)); + m_client->setConnection(new Jreen::TcpConnection(m_currentServer, m_currentPort)); } - qobject_cast(m_client->connection())->setProxy(proxy); + qobject_cast(m_client->connection())->setProxy(*proxy); }