summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-12-04 10:49:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-12-04 10:49:40 -0600
commit96cf12b16ab69bcb2df0773091ba9751e9219446 (patch)
tree286a48d7032e39a15c54d931f1519464b4c5cada
parent0e92714828ad5ffa8ab4b8e2ac7a18d284d79041 (diff)
downloadtdepim-96cf12b16ab69bcb2df0773091ba9751e9219446.tar.gz
tdepim-96cf12b16ab69bcb2df0773091ba9751e9219446.zip
Fix non-virtual destructor warning
-rw-r--r--libkcal/alarm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libkcal/alarm.h b/libkcal/alarm.h
index f667cf6b..09de14f0 100644
--- a/libkcal/alarm.h
+++ b/libkcal/alarm.h
@@ -56,7 +56,7 @@ class LIBKCAL_EXPORT Alarm : public CustomProperties
/**
Destruct Alarm object.
*/
- ~Alarm();
+ virtual ~Alarm();
/**
Returns an exact copy of this alarm. The returned object is owned by the caller.