summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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)
{
}