Skip to content

Commit

Permalink
Formatting fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Feb 16, 2012
1 parent ea3bfe4 commit cfe2a50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mythtv/libs/libmythtv/iptvstreamhandler.cpp
Expand Up @@ -131,7 +131,8 @@ void IPTVStreamHandler::run(void)
if (m_ports[i] >= 0)
{
m_sockets[i] = new QUdpSocket();
m_read_helpers[i] = new IPTVStreamHandlerReadHelper(this, m_sockets[i], i);
m_read_helpers[i] = new IPTVStreamHandlerReadHelper(
this, m_sockets[i], i);
m_sockets[i]->bind(m_addr, m_ports[i]);
}
}
Expand Down
3 changes: 2 additions & 1 deletion mythtv/libs/libmythtv/iptvstreamhandler.h
Expand Up @@ -27,7 +27,8 @@ class IPTVStreamHandlerReadHelper : QObject
Q_OBJECT

public:
IPTVStreamHandlerReadHelper(IPTVStreamHandler *p, QUdpSocket *s, uint stream) :
IPTVStreamHandlerReadHelper(
IPTVStreamHandler *p, QUdpSocket *s, uint stream) :
m_parent(p), m_socket(s), m_stream(stream)
{
connect(m_socket, SIGNAL(readyRead()),
Expand Down

0 comments on commit cfe2a50

Please sign in to comment.