X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fircconnectionwizard.cpp;h=756caf8bf69f196c260cda134f07c5490d4d6781;hp=2665f0158eb25eb5bb364d6be067df1bd4f3d2ea;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=76db8cdfbeffaaba359c8e80cf2146da9e9e7f8a diff --git a/src/qtui/ircconnectionwizard.cpp b/src/qtui/ircconnectionwizard.cpp index 2665f015..756caf8b 100644 --- a/src/qtui/ircconnectionwizard.cpp +++ b/src/qtui/ircconnectionwizard.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 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 * @@ -23,14 +23,12 @@ #include "client.h" #include "identityeditwidget.h" #include "simplenetworkeditor.h" +#include "presetnetworks.h" #include IrcConnectionWizard::IrcConnectionWizard(QWidget *parent, Qt::WindowFlags flags) - : QWizard(parent, flags), - _introductionPage(0), - _identityPage(0), - _networkPage(0) + : QWizard(parent, flags) { _introductionPage = createIntroductionPage(this); _identityPage = new IdentityPage(this); @@ -109,8 +107,7 @@ void IrcConnectionWizard::networkReady(NetworkId id) // Identity Page IdentityPage::IdentityPage(QWidget *parent) : QWizardPage(parent), - _identityEditWidget(new IdentityEditWidget(this)), - _identity(0) + _identityEditWidget(new IdentityEditWidget(this)) { setTitle(tr("Setup Identity")); @@ -143,12 +140,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]); } }