aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/upnp/Manager.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/Manager.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/Manager.cpp')
-rw-r--r--src/modules/upnp/Manager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/upnp/Manager.cpp b/src/modules/upnp/Manager.cpp
index 7d80ae177..4bb41969b 100644
--- a/src/modules/upnp/Manager.cpp
+++ b/src/modules/upnp/Manager.cpp
@@ -73,7 +73,7 @@ Manager::~Manager()
// Initialize the manager, detect all devices
void Manager::initialize()
{
- qDebug() << "UPnP::Manager: Initiating a broadcast to detect UPnP devices..." << endl;
+ qDebug() << "UPnP::Manager: initiating a broadcast to detect UPnP devices..." << endl;
// Create the SSDP object to detect devices
@@ -144,7 +144,7 @@ void Manager::slotBroadcastTimeout()
{
if(!m_bBroadcastFoundIt)
{
- qDebug() << "UPnP::Manager: Timeout, no broadcast response received!" << endl;
+ qDebug() << "UPnP::Manager: timeout, no broadcast response received!" << endl;
m_bBroadcastFailed = true;
}
@@ -155,7 +155,7 @@ void Manager::slotBroadcastTimeout()
// A device was discovered by the SSDP broadcast
void Manager::slotDeviceFound(const QString &hostname, int port, const QString &rootUrl)
{
- qDebug() << "UPnP::Manager: Device found, initializing IgdControlPoint to query it." << endl;
+ qDebug() << "UPnP::Manager: device found, initializing IgdControlPoint to query it." << endl;
// this blocks the action of our timeout timer
m_bBroadcastFoundIt = true;