summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2015-08-02 20:30:41 (GMT)
committerKevin Smith <kevin.smith@isode.com>2015-08-11 10:03:09 (GMT)
commit4d82839a2be335bbc4317ed802cb89dc7f03564e (patch)
tree2d81eecd66adb0df130183bbd21bf4067ac52762 /Swiften/FileTransfer
parent1227b9d9b5ccfde57e9c7e946275907391d17ce1 (diff)
downloadswift-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
Diffstat (limited to 'Swiften/FileTransfer')
-rw-r--r--Swiften/FileTransfer/FileTransferManagerImpl.h2
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
@@ -65,7 +65,7 @@ namespace Swift {
NetworkEnvironment* networkEnvironment,
NATTraverser* natTraverser,
CryptoProvider* crypto);
- ~FileTransferManagerImpl();
+ virtual ~FileTransferManagerImpl();
OutgoingFileTransfer::ref createOutgoingFileTransfer(
const JID& to,