qa: Replace deprecated qVariantFromValue() by QVariant::fromValue()
[quassel.git] / src / core / coredccconfig.cpp
index 46dfdfb..8053138 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2016 by the Quassel Project                        *
+ *   Copyright (C) 2005-2019 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(CoreSessionsession)
     : 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());