From 097a3775009d54ff8957addb756ed77d970f2637 Mon Sep 17 00:00:00 2001 From: "Uwe L. Korn" Date: Mon, 27 May 2013 15:36:28 +0200 Subject: [PATCH] Remove trailing semicolons --- src/libtomahawk/network/Connection.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/libtomahawk/network/Connection.h b/src/libtomahawk/network/Connection.h index ba8d92e28..769e05a58 100644 --- a/src/libtomahawk/network/Connection.h +++ b/src/libtomahawk/network/Connection.h @@ -60,28 +60,28 @@ public: void setFirstMessage( const QVariant& m ); void setFirstMessage( msg_ptr m ); - msg_ptr firstMessage() const { return m_firstmsg; }; + msg_ptr firstMessage() const { return m_firstmsg; } - const QPointer& socket() { return m_sock; }; + const QPointer& socket() { return m_sock; } - void setOutbound( bool o ) { m_outbound = o; }; + void setOutbound( bool o ) { m_outbound = o; } bool outbound() const { return m_outbound; } - Servent* servent() { return m_servent; }; + Servent* servent() { return m_servent; } // get public port of remote peer: - int peerPort() { return m_peerport; }; - void setPeerPort( int p ) { m_peerport = p; }; + int peerPort() { return m_peerport; } + void setPeerPort( int p ) { m_peerport = p; } void markAsFailed(); - void setName( const QString& n ) { m_name = n; }; - QString name() const { return m_name; }; + void setName( const QString& n ) { m_name = n; } + QString name() const { return m_name; } - void setOnceOnly( bool b ) { m_onceonly = b; }; - bool onceOnly() const { return m_onceonly; }; + void setOnceOnly( bool b ) { m_onceonly = b; } + bool onceOnly() const { return m_onceonly; } - bool isReady() const { return m_ready; } ; + bool isReady() const { return m_ready; } bool isRunning() const { return m_sock != 0; } qint64 bytesSent() const { return m_tx_bytes; }