X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Fircconnectionwizard.cpp;h=d7e865877a087c54bbdff10232fed2cbeffb1904;hb=3a3e844f9fcfd12235a0086af75ecd503b621ef4;hp=a73ad516cbba35a2cb2263313f34f75c7d67dee3;hpb=ff905e28565ed9e7800ec50bb1b9032e581663b2;p=quassel.git diff --git a/src/qtui/ircconnectionwizard.cpp b/src/qtui/ircconnectionwizard.cpp index a73ad516..d7e86587 100644 --- a/src/qtui/ircconnectionwizard.cpp +++ b/src/qtui/ircconnectionwizard.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 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 * @@ -29,9 +29,9 @@ IrcConnectionWizard::IrcConnectionWizard(QWidget *parent, Qt::WindowFlags flags) : QWizard(parent, flags), - _introductionPage(0), - _identityPage(0), - _networkPage(0) + _introductionPage(nullptr), + _identityPage(nullptr), + _networkPage(nullptr) { _introductionPage = createIntroductionPage(this); _identityPage = new IdentityPage(this); @@ -111,7 +111,7 @@ void IrcConnectionWizard::networkReady(NetworkId id) IdentityPage::IdentityPage(QWidget *parent) : QWizardPage(parent), _identityEditWidget(new IdentityEditWidget(this)), - _identity(0) + _identity(nullptr) { setTitle(tr("Setup Identity"));