summaryrefslogtreecommitdiffstats
path: root/src/net
diff options
context:
space:
mode:
authorbrs2010-07-15 09:40:49 +0200
committerbrs2010-07-15 09:40:49 +0200
commitef77541b30b5025ac1882ad8b963e535f2cc8ad5 (patch)
treefbd5b8867f04f974c26d52f0306c3fde5839e2fa /src/net
parent* Upgrade OpenPGM to current trunk (diff)
downloadpvs-ef77541b30b5025ac1882ad8b963e535f2cc8ad5.tar.gz
pvs-ef77541b30b5025ac1882ad8b963e535f2cc8ad5.tar.xz
pvs-ef77541b30b5025ac1882ad8b963e535f2cc8ad5.zip
Whitespace fixes
Diffstat (limited to 'src/net')
-rw-r--r--src/net/mcast/McastConfiguration.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/net/mcast/McastConfiguration.h b/src/net/mcast/McastConfiguration.h
index f10d487..2e64678 100644
--- a/src/net/mcast/McastConfiguration.h
+++ b/src/net/mcast/McastConfiguration.h
@@ -25,7 +25,7 @@
class McastConfiguration: public QObject
{
-Q_OBJECT
+ Q_OBJECT
public:
McastConfiguration(QObject* parent = 0) :
QObject(parent),
@@ -42,16 +42,16 @@ public:
}
McastConfiguration(McastConfiguration const& other) :
+ QObject(),
_multicastInterface(other._multicastInterface),
- QObject(),
- _multicastAddress(other._multicastAddress),
- _multicastRate(other._multicastRate),
- _multicastSPort(other._multicastSPort),
- _multicastDPort(other._multicastDPort),
- _multicastWinSize(other._multicastWinSize),
- _multicastMTU(other._multicastMTU),
- _multicastUDPPortBase(other._multicastUDPPortBase),
- _multicastUseUDP(other._multicastUseUDP)
+ _multicastAddress(other._multicastAddress),
+ _multicastRate(other._multicastRate),
+ _multicastSPort(other._multicastSPort),
+ _multicastDPort(other._multicastDPort),
+ _multicastWinSize(other._multicastWinSize),
+ _multicastMTU(other._multicastMTU),
+ _multicastUDPPortBase(other._multicastUDPPortBase),
+ _multicastUseUDP(other._multicastUseUDP)
{
}