diff options
| author | Tobias Markmann <tm@ayena.de> | 2015-08-02 20:30:41 (GMT) |
|---|---|---|
| committer | Kevin Smith <kevin.smith@isode.com> | 2015-08-11 10:03:09 (GMT) |
| commit | 4d82839a2be335bbc4317ed802cb89dc7f03564e (patch) | |
| tree | 2d81eecd66adb0df130183bbd21bf4067ac52762 | |
| parent | 1227b9d9b5ccfde57e9c7e946275907391d17ce1 (diff) | |
| download | swift-4d82839a2be335bbc4317ed802cb89dc7f03564e.zip swift-4d82839a2be335bbc4317ed802cb89dc7f03564e.tar.bz2 | |
Add missing virtual keyword on FileTransferManagerImpl dtor
FileTransferManagerImpl should have a virtual dtor, as the
parent class also has a virtual dtor.
Test-Information:
Unit tests still run.
Change-Id: I72a0757a930254caadfd1463b3f90af6c4829bd0
| -rw-r--r-- | Swiften/FileTransfer/FileTransferManagerImpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/FileTransfer/FileTransferManagerImpl.h b/Swiften/FileTransfer/FileTransferManagerImpl.h index 7a77564..49490c8 100644 --- a/Swiften/FileTransfer/FileTransferManagerImpl.h +++ b/Swiften/FileTransfer/FileTransferManagerImpl.h | |||
| @@ -63,11 +63,11 @@ namespace Swift { | |||
| 63 | TimerFactory* timerFactory, | 63 | TimerFactory* timerFactory, |
| 64 | DomainNameResolver* domainNameResolver, | 64 | DomainNameResolver* domainNameResolver, |
| 65 | NetworkEnvironment* networkEnvironment, | 65 | NetworkEnvironment* networkEnvironment, |
| 66 | NATTraverser* natTraverser, | 66 | NATTraverser* natTraverser, |
| 67 | CryptoProvider* crypto); | 67 | CryptoProvider* crypto); |
| 68 | ~FileTransferManagerImpl(); | 68 | virtual ~FileTransferManagerImpl(); |
| 69 | 69 | ||
| 70 | OutgoingFileTransfer::ref createOutgoingFileTransfer( | 70 | OutgoingFileTransfer::ref createOutgoingFileTransfer( |
| 71 | const JID& to, | 71 | const JID& to, |
| 72 | const boost::filesystem::path& filepath, | 72 | const boost::filesystem::path& filepath, |
| 73 | const std::string& description, | 73 | const std::string& description, |
Swift