X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoredccconfig.cpp;h=0157840371367b146075123f574eeb4fec6bc144;hb=b8ce41ef6c0036d854f5bef0fb52e2a69dc5def2;hp=46dfdfb6824df8cd353884d05bab02bc926dc642;hpb=be04b68a0f10891b81c07cdda204a9abc0ac56a7;p=quassel.git diff --git a/src/core/coredccconfig.cpp b/src/core/coredccconfig.cpp index 46dfdfb6..01578403 100644 --- a/src/core/coredccconfig.cpp +++ b/src/core/coredccconfig.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -25,7 +25,7 @@ constexpr auto settingsKey = "DccConfig"; -CoreDccConfig::CoreDccConfig(CoreSession *session) +CoreDccConfig::CoreDccConfig(CoreSession* session) : DccConfig(session) , _coreSession{session} { @@ -36,10 +36,9 @@ CoreDccConfig::CoreDccConfig(CoreSession *session) // Otherwise, we just use the defaults initialized in the base class // We store our settings whenever they change - connect(this, SIGNAL(updatedRemotely()), SLOT(save())); + connect(this, &SyncableObject::updatedRemotely, this, &CoreDccConfig::save); } - void CoreDccConfig::save() { Core::setUserSetting(_coreSession->user(), settingsKey, toVariantMap());