X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fircconnectionwizard.h;fp=src%2Fqtui%2Fircconnectionwizard.h;h=7528d9fcdeaed287df6bca090f13dc526153f9ce;hp=3347f2126075b585498b363829ba973c0e8997b5;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=30b159cb876a9495de42e9a3e70ca050516f0805 diff --git a/src/qtui/ircconnectionwizard.h b/src/qtui/ircconnectionwizard.h index 3347f212..7528d9fc 100644 --- a/src/qtui/ircconnectionwizard.h +++ b/src/qtui/ircconnectionwizard.h @@ -30,9 +30,9 @@ class IrcConnectionWizard : public QWizard Q_OBJECT public: - IrcConnectionWizard(QWidget *parent = nullptr, Qt::WindowFlags flags = nullptr); + IrcConnectionWizard(QWidget* parent = nullptr, Qt::WindowFlags flags = nullptr); - static QWizardPage *createIntroductionPage(QWidget *parent = nullptr); + static QWizardPage* createIntroductionPage(QWidget* parent = nullptr); private slots: void finishClicked(); @@ -40,12 +40,11 @@ private slots: void networkReady(NetworkId id); private: - QWizardPage *_introductionPage{nullptr}; - QWizardPage *_identityPage{nullptr}; - QWizardPage *_networkPage{nullptr}; + QWizardPage* _introductionPage{nullptr}; + QWizardPage* _identityPage{nullptr}; + QWizardPage* _networkPage{nullptr}; }; - // ============================== // Wizard Pages // ============================== @@ -60,16 +59,15 @@ class IdentityPage : public QWizardPage Q_OBJECT public: - IdentityPage(QWidget *parent = nullptr); + IdentityPage(QWidget* parent = nullptr); - CertIdentity *identity(); + CertIdentity* identity(); private: - IdentityEditWidget *_identityEditWidget; - CertIdentity *_identity{nullptr}; + IdentityEditWidget* _identityEditWidget; + CertIdentity* _identity{nullptr}; }; - // Network Page #include "network.h" @@ -80,16 +78,15 @@ class NetworkPage : public QWizardPage Q_OBJECT public: - NetworkPage(QWidget *parent = nullptr); + NetworkPage(QWidget* parent = nullptr); NetworkInfo networkInfo(); QStringList channelList(); private: - SimpleNetworkEditor *_networkEditor; + SimpleNetworkEditor* _networkEditor; NetworkInfo _networkInfo; QStringList _channelList; }; - -#endif //IRCCONNECTIONWIZARD_H +#endif // IRCCONNECTIONWIZARD_H