X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fircconnectionwizard.h;h=3347f2126075b585498b363829ba973c0e8997b5;hp=b6272be3c9a6c525afc261cf2edbc166281b2478;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/qtui/ircconnectionwizard.h b/src/qtui/ircconnectionwizard.h index b6272be3..3347f212 100644 --- a/src/qtui/ircconnectionwizard.h +++ b/src/qtui/ircconnectionwizard.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 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 * @@ -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. * ***************************************************************************/ #ifndef IRCCONNECTIONWIZARD_H @@ -30,9 +30,9 @@ class IrcConnectionWizard : public QWizard Q_OBJECT public: - IrcConnectionWizard(QWidget *parent = 0, Qt::WindowFlags flags = 0); + IrcConnectionWizard(QWidget *parent = nullptr, Qt::WindowFlags flags = nullptr); - static QWizardPage *createIntroductionPage(QWidget *parent = 0); + static QWizardPage *createIntroductionPage(QWidget *parent = nullptr); private slots: void finishClicked(); @@ -40,9 +40,9 @@ private slots: void networkReady(NetworkId id); private: - QWizardPage *_introductionPage; - QWizardPage *_identityPage; - QWizardPage *_networkPage; + QWizardPage *_introductionPage{nullptr}; + QWizardPage *_identityPage{nullptr}; + QWizardPage *_networkPage{nullptr}; }; @@ -60,13 +60,13 @@ class IdentityPage : public QWizardPage Q_OBJECT public: - IdentityPage(QWidget *parent = 0); + IdentityPage(QWidget *parent = nullptr); CertIdentity *identity(); private: IdentityEditWidget *_identityEditWidget; - CertIdentity *_identity; + CertIdentity *_identity{nullptr}; }; @@ -80,7 +80,7 @@ class NetworkPage : public QWizardPage Q_OBJECT public: - NetworkPage(QWidget *parent = 0); + NetworkPage(QWidget *parent = nullptr); NetworkInfo networkInfo(); QStringList channelList();