X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fcoreinfo.cpp;h=a221152fc21f4813ddb957b97c930be6842bfccc;hb=30269231603184696da66adf4503440062df8962;hp=cfa86ab78808a3293baf16f7059ce882ca00d404;hpb=e375f7a6a6de045735a897ef05bf6dcc82770ff5;p=quassel.git diff --git a/src/common/coreinfo.cpp b/src/common/coreinfo.cpp index cfa86ab7..a221152f 100644 --- a/src/common/coreinfo.cpp +++ b/src/common/coreinfo.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -20,15 +20,16 @@ #include "coreinfo.h" -INIT_SYNCABLE_OBJECT(CoreInfo) -CoreInfo::CoreInfo(QObject *parent) : SyncableObject(parent) {} +CoreInfo::CoreInfo(QObject* parent) + : SyncableObject(parent) +{} QVariantMap CoreInfo::coreData() const { return _coreData; } -void CoreInfo::setCoreData(const QVariantMap &coreData) +void CoreInfo::setCoreData(const QVariantMap& coreData) { _coreData = coreData; SYNC(ARG(coreData));