diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-12-06 15:17:15 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-12-06 15:17:15 -0600 |
commit | 6e9f8cb7044774da171b2a0f6ffdda579eb9ddab (patch) | |
tree | 8078dd1ba3a4b5ec1d651c09156cf18e2cba9d51 /wizards | |
parent | 96cf12b16ab69bcb2df0773091ba9751e9219446 (diff) | |
download | tdepim-6e9f8cb7044774da171b2a0f6ffdda579eb9ddab.tar.gz tdepim-6e9f8cb7044774da171b2a0f6ffdda579eb9ddab.zip |
Fix Kontact crash in Akregator part due to identical destructor signatures being generated for two unrelated classesr14.0.0
This relates to Bug 2235
Fix a slew of non-virtual destructor problems
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/kmailchanges.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wizards/kmailchanges.h b/wizards/kmailchanges.h index b098b08d..e17baa95 100644 --- a/wizards/kmailchanges.h +++ b/wizards/kmailchanges.h @@ -35,6 +35,8 @@ class CreateImapAccount : public TDEConfigPropagator::Change class CustomWriter { public: + CustomWriter() {} + virtual ~CustomWriter() {} virtual void writeFolder( TDEConfig &, int folderId ) = 0; virtual void writeIds( int accountId, int transportId ) = 0; }; |