From 4e23978e1fe62c7f455ae7f6ed13892a475c6aeb Mon Sep 17 00:00:00 2001 From: Alexander Lohnau Date: Sat, 7 Sep 2024 11:51:06 +0200 Subject: [PATCH] smsapp: Ensure SmsCharCount has necessary headers included, remove unneeded default constructor --- smsapp/smscharcount.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/smsapp/smscharcount.h b/smsapp/smscharcount.h index 83ba4231e..4024effba 100644 --- a/smsapp/smscharcount.h +++ b/smsapp/smscharcount.h @@ -7,6 +7,8 @@ #ifndef CHARCOUNT_H #define CHARCOUNT_H +#include + class SmsCharCount { public: @@ -29,9 +31,6 @@ public: * Count of SMSes in concatenated SMS. */ qint32 messages; - - SmsCharCount() {}; - ~SmsCharCount() {}; }; #endif // CHARCOUNT_H