aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/upnp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/upnp')
-rw-r--r--src/modules/upnp/Manager.h2
-rw-r--r--src/modules/upnp/RootService.h4
-rw-r--r--src/modules/upnp/Service.h2
-rw-r--r--src/modules/upnp/SsdpConnection.h2
-rw-r--r--src/modules/upnp/WanConnectionService.h4
-rw-r--r--src/modules/upnp/igdcontrolpoint.h2
6 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/upnp/Manager.h b/src/modules/upnp/Manager.h
index 69fd14ed5..4ee83d435 100644
--- a/src/modules/upnp/Manager.h
+++ b/src/modules/upnp/Manager.h
@@ -59,7 +59,7 @@ namespace UPnP
public: // public methods
// The destructor
- virtual ~Manager();
+ ~Manager();
// Return the external IP address
QString getExternalIpAddress() const;
diff --git a/src/modules/upnp/RootService.h b/src/modules/upnp/RootService.h
index 971e86be2..97d319fa0 100644
--- a/src/modules/upnp/RootService.h
+++ b/src/modules/upnp/RootService.h
@@ -55,7 +55,7 @@ namespace UPnP
// The constructor
RootService(const QString & hostname, int port, const QString & rootUrl);
// The destructor
- virtual ~RootService();
+ ~RootService();
// Return the device type
QString getDeviceType() const;
@@ -74,7 +74,7 @@ namespace UPnP
protected: // Protected methods
// The control point received a response to callInformationUrl()
- virtual void gotInformationResponse(const QDomNode & response);
+ void gotInformationResponse(const QDomNode & response) override;
private: // Private methods
// Recursively add all devices and embedded devices to the deviceServices_ map
diff --git a/src/modules/upnp/Service.h b/src/modules/upnp/Service.h
index acae54418..c65c132c6 100644
--- a/src/modules/upnp/Service.h
+++ b/src/modules/upnp/Service.h
@@ -75,7 +75,7 @@ namespace UPnP
// The constructor for action services
Service(const ServiceParameters & params);
// The destructor
- virtual ~Service();
+ ~Service();
// Get the number of pending requests
int getPendingRequests() const;
diff --git a/src/modules/upnp/SsdpConnection.h b/src/modules/upnp/SsdpConnection.h
index 0068f2f25..8be9cdc3c 100644
--- a/src/modules/upnp/SsdpConnection.h
+++ b/src/modules/upnp/SsdpConnection.h
@@ -58,7 +58,7 @@ namespace UPnP
public:
SsdpConnection();
- virtual ~SsdpConnection();
+ ~SsdpConnection();
void queryDevices(int bindPort = 1500);
diff --git a/src/modules/upnp/WanConnectionService.h b/src/modules/upnp/WanConnectionService.h
index 24e306dff..6e950dd5b 100644
--- a/src/modules/upnp/WanConnectionService.h
+++ b/src/modules/upnp/WanConnectionService.h
@@ -68,7 +68,7 @@ namespace UPnP
// The constructor
WanConnectionService(const ServiceParameters & params);
// The destructor
- virtual ~WanConnectionService();
+ ~WanConnectionService();
// Add a port mapping
void addPortMapping(const QString & protocol, const QString & remoteHost, int externalPort,
@@ -93,7 +93,7 @@ namespace UPnP
protected: // protected methods
// The control point received a response to callAction()
- virtual void gotActionResponse(const QString & responseType, const QMap<QString, QString> & resultValues);
+ void gotActionResponse(const QString & responseType, const QMap<QString, QString> & resultValues) override;
private: // private attributes
// The external IP address
diff --git a/src/modules/upnp/igdcontrolpoint.h b/src/modules/upnp/igdcontrolpoint.h
index e292c0e72..209b28ee7 100644
--- a/src/modules/upnp/igdcontrolpoint.h
+++ b/src/modules/upnp/igdcontrolpoint.h
@@ -61,7 +61,7 @@ namespace UPnP
// The constructor
IgdControlPoint(const QString & hostname, int port, const QString & rootUrl);
// The destructor
- virtual ~IgdControlPoint();
+ ~IgdControlPoint();
// Return the external IP address
QString getExternalIpAddress() const;