X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreirclisthelper.cpp;h=232508148be35ed49801ae2d82bfff45ebd12173;hb=71253052c7152711f7f1b96f274d6f06d97f2cdb;hp=723e652c076cd678b1e90c231116cb40b18f55c4;hpb=cc6e7c08709c4e761e2fd9c2e322751015497003;p=quassel.git diff --git a/src/core/coreirclisthelper.cpp b/src/core/coreirclisthelper.cpp index 723e652c..23250814 100644 --- a/src/core/coreirclisthelper.cpp +++ b/src/core/coreirclisthelper.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2019 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 * @@ -87,7 +87,7 @@ bool CoreIrcListHelper::endOfChannelList(const NetworkId& netId) foreach (ChannelDescription channel, _channelLists[netId]) { QVariantList channelVariant; channelVariant << channel.channelName << channel.userCount << channel.topic; - channelList << qVariantFromValue(channelVariant); + channelList << QVariant::fromValue(channelVariant); } _finishedChannelLists[netId] = channelList; _channelLists.remove(netId);