aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/upnp/igdcontrolpoint.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2015-12-09 11:58:53 +0000
committerGravatar un1versal2015-12-19 02:40:22 +0000
commit7d4516afc4cd194f9224dcd5e07e0f234c162fdf (patch)
treea1a165c897339fcbd35a27108fe16c999a3041e2 /src/modules/upnp/igdcontrolpoint.cpp
parentMerge pull request #1776 from TheReign/issue_1754_2 (diff)
downloadKVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.tar.gz
KVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.tar.bz2
KVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.zip
src/modules typos: capitalize, formatting, consistency and syntax fixes
Diffstat (limited to 'src/modules/upnp/igdcontrolpoint.cpp')
-rw-r--r--src/modules/upnp/igdcontrolpoint.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/upnp/igdcontrolpoint.cpp b/src/modules/upnp/igdcontrolpoint.cpp
index b34ade01f..7ed70ed92 100644
--- a/src/modules/upnp/igdcontrolpoint.cpp
+++ b/src/modules/upnp/igdcontrolpoint.cpp
@@ -52,7 +52,7 @@ IgdControlPoint::IgdControlPoint(const QString &hostname, int port, const QStrin
, m_pRootService(0)
, m_pWanConnectionService(0)
{
- qDebug() << "CREATED UPnP::IgdControlPoint: Created control point"
+ qDebug() << "CREATED UPnP::IgdControlPoint: created control point"
<< " url='" << hostname << ":" << port << "/" << rootUrl << "'." << endl;
qDebug() << "UPnP::IgdControlPoint: querying services..." << endl;
@@ -123,15 +123,15 @@ void IgdControlPoint::slotDeviceQueried(bool error)
m_bGatewayAvailable = true;
- qDebug() << "UPnP::IgdControlPoint: wan/ipconnection service found, "
- << "querying service '" << params.serviceId << "' for external ip address..." << endl;
+ qDebug() << "UPnP::IgdControlPoint: WAN/IP connection service found, "
+ << "querying service '" << params.serviceId << "' for external IP address..." << endl;
// Call the service
m_pWanConnectionService = new WanConnectionService(params);
connect(m_pWanConnectionService, SIGNAL(queryFinished(bool)), this, SLOT(slotWanQueryFinished(bool)));
m_pWanConnectionService->queryExternalIpAddress();
} else {
- qDebug() << "UPnP::IgdControlPoint: no ppp/ipconnection service found :(" << endl;
+ qDebug() << "UPnP::IgdControlPoint: no PPP/IP connection service found :(" << endl;
}
}
}
@@ -142,10 +142,10 @@ void IgdControlPoint::slotWanQueryFinished(bool error)
{
if(! error)
{
- qDebug() << "IgdControlPoint: UPnP Gateway Device found." << endl;
+ qDebug() << "IgdControlPoint: UPnP gateway device found." << endl;
} else {
// Just started, the request for the external IP failed. This should succeed, abort portation
- qDebug() << "Requesting external IP address failed, leaving UPnP Gateway Device untouched." << endl;
+ qDebug() << "Requesting external IP address failed, leaving UPnP gateway device untouched." << endl;
}
}