X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fircconnectionwizard.cpp;h=840da810cedf0705e8f9002d3152bd0ea01d163b;hp=8f6b0c7abf1efe4e2f498e28b4860e834270413e;hb=a113f73e5f8ce89c3df5c42d55528404fc7a2294;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/qtui/ircconnectionwizard.cpp b/src/qtui/ircconnectionwizard.cpp index 8f6b0c7a..840da810 100644 --- a/src/qtui/ircconnectionwizard.cpp +++ b/src/qtui/ircconnectionwizard.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "ircconnectionwizard.h" @@ -23,6 +23,7 @@ #include "client.h" #include "identityeditwidget.h" #include "simplenetworkeditor.h" +#include "presetnetworks.h" #include @@ -143,12 +144,12 @@ NetworkPage::NetworkPage(QWidget *parent) : QWizardPage(parent), _networkEditor(new SimpleNetworkEditor(this)) { - QStringList defaultNets = Network::presetNetworks(true); + QStringList defaultNets = PresetNetworks::names(true); if (!defaultNets.isEmpty()) { - NetworkInfo info = Network::networkInfoFromPreset(defaultNets[0]); + NetworkInfo info = PresetNetworks::networkInfo(defaultNets[0]); if (!info.networkName.isEmpty()) { _networkInfo = info; - _channelList = Network::presetDefaultChannels(defaultNets[0]); + _channelList = PresetNetworks::defaultChannels(defaultNets[0]); } }