diff options
Diffstat (limited to 'src/multilog.h')
-rw-r--r-- | src/multilog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/multilog.h b/src/multilog.h index 7e4a357..692095a 100644 --- a/src/multilog.h +++ b/src/multilog.h | |||
@@ -42,7 +42,7 @@ public: | |||
42 | typedef struct LogEntry | 42 | typedef struct LogEntry |
43 | { | 43 | { |
44 | /** Safely delete a log entry. */ | 44 | /** Safely delete a log entry. */ |
45 | ~LogEntry(); | 45 | virtual ~LogEntry(); |
46 | time_t xTime; /**< The time the log entry was made. */ | 46 | time_t xTime; /**< The time the log entry was made. */ |
47 | int nLevel; /**< The log-level of the entry. */ | 47 | int nLevel; /**< The log-level of the entry. */ |
48 | char *lpFile; /**< The name of the file this entry came from. */ | 48 | char *lpFile; /**< The name of the file this entry came from. */ |
@@ -59,7 +59,7 @@ protected: | |||
59 | /** | 59 | /** |
60 | * Destroy the multilog. | 60 | * Destroy the multilog. |
61 | */ | 61 | */ |
62 | ~MultiLog(); | 62 | virtual ~MultiLog(); |
63 | 63 | ||
64 | /** | 64 | /** |
65 | * Append a new logentry to the log list, possibly pushing an old entry off. | 65 | * Append a new logentry to the log list, possibly pushing an old entry off. |