Core: Use class, not struct

Change-Id: Ib58e10c98b2cc379f0b5559c2758aecd7daf276a
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2015-01-16 13:39:57 +01:00
parent 262f7f428f
commit 8c3e68832e

View File

@@ -76,8 +76,9 @@ public:
virtual QString refreshTopic(const QString &repository) = 0;
private:
struct TopicData
class TopicData
{
public:
QDateTime timeStamp;
QString topic;
};