aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/upnp/layer3forwardingservice.cpp
diff options
context:
space:
mode:
authorGravatar Alexey Uzhva2008-08-13 05:02:13 +0000
committerGravatar Alexey Uzhva2008-08-13 05:02:13 +0000
commitfe1d83a4bb10302b1a59dbcfd09260cb3ed9ef93 (patch)
tree8bf8018fd4fce8a76ea911009d5e19b028b73e4b /src/modules/upnp/layer3forwardingservice.cpp
parentsmall cosmetic fix:) (diff)
downloadKVIrc-fe1d83a4bb10302b1a59dbcfd09260cb3ed9ef93.tar.gz
KVIrc-fe1d83a4bb10302b1a59dbcfd09260cb3ed9ef93.tar.bz2
KVIrc-fe1d83a4bb10302b1a59dbcfd09260cb3ed9ef93.zip
renamed class members, according to KVIrc code conventions
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2233 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/upnp/layer3forwardingservice.cpp')
-rw-r--r--src/modules/upnp/layer3forwardingservice.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/upnp/layer3forwardingservice.cpp b/src/modules/upnp/layer3forwardingservice.cpp
index 08a8a59dd..8c18cc45a 100644
--- a/src/modules/upnp/layer3forwardingservice.cpp
+++ b/src/modules/upnp/layer3forwardingservice.cpp
@@ -57,7 +57,7 @@ Layer3ForwardingService::~Layer3ForwardingService()
// Get the device UDN of the default connection service
QString Layer3ForwardingService::getConnectionDeviceUdn() const
{
- return connectionDeviceUdn_;
+ return m_szConnectionDeviceUdn;
}
@@ -65,7 +65,7 @@ QString Layer3ForwardingService::getConnectionDeviceUdn() const
// Get the service ID of the default connection service
QString Layer3ForwardingService::getConnectionServiceId() const
{
- return connectionServiceId_;
+ return m_szConnectionServiceId;
}
@@ -101,9 +101,9 @@ void Layer3ForwardingService::gotActionResponse(const QString &responseType, con
if(type == "uuid")
{
// format: uuid:<id>:<class>:<ver>
- connectionDeviceUdn_ = serviceItems[i].section(':', 0, 1);
+ m_szConnectionDeviceUdn = serviceItems[i].section(':', 0, 1);
} else if(type == "urn") {
- connectionServiceId_ = serviceItems[i];
+ m_szConnectionServiceId = serviceItems[i];
} else {
qDebug() << "UPnP::Layer3ForwardingService - Unexpected section"
<< " '" << type << "' encountered in NewDefaultConnectionService value." << endl;
@@ -111,8 +111,8 @@ void Layer3ForwardingService::gotActionResponse(const QString &responseType, con
}
qDebug() << "UPnP::Layer3ForwardingService:"
- << " udn='" << connectionDeviceUdn_ << "'"
- << " serviceid='" << connectionServiceId_ << "'." << endl;
+ << " udn='" << m_szConnectionDeviceUdn << "'"
+ << " serviceid='" << m_szConnectionServiceId << "'." << endl;
} else {
qDebug() << "UPnP::Layer3ForwardingService - Unexpected response type"
<< " '" << responseType << "' encountered." << endl;