smsapp: Ensure SmsCharCount has necessary headers included, remove unneeded default constructor

This commit is contained in:
Alexander Lohnau 2024-09-07 11:51:06 +02:00
parent 013ba537b5
commit 4e23978e1f

View file

@ -7,6 +7,8 @@
#ifndef CHARCOUNT_H
#define CHARCOUNT_H
#include <QtTypes>
class SmsCharCount
{
public:
@ -29,9 +31,6 @@ public:
* Count of SMSes in concatenated SMS.
*/
qint32 messages;
SmsCharCount() {};
~SmsCharCount() {};
};
#endif // CHARCOUNT_H