From 96cf12b16ab69bcb2df0773091ba9751e9219446 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 4 Dec 2014 10:49:40 -0600 Subject: [PATCH] Fix non-virtual destructor warning --- libkcal/alarm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.