summaryrefslogtreecommitdiffstats
path: root/src/network/kernel/qnetconmonitor_stub.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/kernel/qnetconmonitor_stub.cpp')
-rw-r--r--src/network/kernel/qnetconmonitor_stub.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/network/kernel/qnetconmonitor_stub.cpp b/src/network/kernel/qnetconmonitor_stub.cpp
index a8ff861739..a992339e42 100644
--- a/src/network/kernel/qnetconmonitor_stub.cpp
+++ b/src/network/kernel/qnetconmonitor_stub.cpp
@@ -61,8 +61,8 @@ QNetworkConnectionMonitor::QNetworkConnectionMonitor()
QNetworkConnectionMonitor::QNetworkConnectionMonitor(const QHostAddress &local, const QHostAddress &remote)
: QObject(*new QNetworkConnectionMonitorPrivate)
{
- Q_UNUSED(local)
- Q_UNUSED(remote)
+ Q_UNUSED(local);
+ Q_UNUSED(remote);
}
QNetworkConnectionMonitor::~QNetworkConnectionMonitor()
@@ -71,8 +71,8 @@ QNetworkConnectionMonitor::~QNetworkConnectionMonitor()
bool QNetworkConnectionMonitor::setTargets(const QHostAddress &local, const QHostAddress &remote)
{
- Q_UNUSED(local)
- Q_UNUSED(remote)
+ Q_UNUSED(local);
+ Q_UNUSED(remote);
return false;
}
@@ -140,7 +140,7 @@ bool QNetworkStatusMonitor::isEnabled()
void QNetworkStatusMonitor::reachabilityChanged(bool online)
{
- Q_UNUSED(online)
+ Q_UNUSED(online);
}
QT_END_NAMESPACE