X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreirclisthelper.cpp;h=232508148be35ed49801ae2d82bfff45ebd12173;hb=1868486419b5354a7a2e45b263a0b698ab51e83c;hp=1e81d6036a97397b3bc1dd1b1358ab17867c08bf;hpb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;p=quassel.git diff --git a/src/core/coreirclisthelper.cpp b/src/core/coreirclisthelper.cpp index 1e81d603..23250814 100644 --- a/src/core/coreirclisthelper.cpp +++ b/src/core/coreirclisthelper.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 * @@ -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);