diff options
| author | 2018-11-28 22:00:54 -0500 | |
|---|---|---|
| committer | 2018-11-28 22:02:03 -0500 | |
| commit | 2c52bee29d4636bcdce407ac91b353d34d89258c (patch) | |
| tree | 2da7f0051d989cbf027863fef7955590d2869405 /src/modules/upnp/WanConnectionService.h | |
| parent | Remove unnecessary usages of the inline keyword per language evolution. (diff) | |
| download | KVIrc-2c52bee29d4636bcdce407ac91b353d34d89258c.tar.gz KVIrc-2c52bee29d4636bcdce407ac91b353d34d89258c.tar.bz2 KVIrc-2c52bee29d4636bcdce407ac91b353d34d89258c.zip | |
Use override where possible and remove unnecessary usages of the virtual keyword.
Diffstat (limited to 'src/modules/upnp/WanConnectionService.h')
| -rw-r--r-- | src/modules/upnp/WanConnectionService.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
