diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-09-10 12:59:21 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-09-10 12:59:21 +0300 |
commit | 1bfe48de7512a1f80a721c89127f1491641fd7a7 (patch) | |
tree | 0312f020eeff7425e2681a7c6c2c327c28fc05ce /include/WelcomePage.h | |
parent | Allow port number as part of the hostname (diff) | |
download | nheko-1bfe48de7512a1f80a721c89127f1491641fd7a7.tar.xz |
Style change again
Diffstat (limited to 'include/WelcomePage.h')
-rw-r--r-- | include/WelcomePage.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/include/WelcomePage.h b/include/WelcomePage.h index 13d9d141..bef463c6 100644 --- a/include/WelcomePage.h +++ b/include/WelcomePage.h @@ -27,32 +27,32 @@ class WelcomePage : public QWidget { - Q_OBJECT + Q_OBJECT public: - explicit WelcomePage(QWidget *parent = 0); - ~WelcomePage(); + explicit WelcomePage(QWidget *parent = 0); + ~WelcomePage(); signals: - // Notify that the user wants to login in. - void userLogin(); + // Notify that the user wants to login in. + void userLogin(); - // Notify that the user wants to register. - void userRegister(); + // Notify that the user wants to register. + void userRegister(); private slots: - void onLoginButtonClicked(); - void onRegisterButtonClicked(); + void onLoginButtonClicked(); + void onRegisterButtonClicked(); private: - QVBoxLayout *top_layout_; - QHBoxLayout *button_layout_; + QVBoxLayout *top_layout_; + QHBoxLayout *button_layout_; - QLabel *intro_banner_; - QLabel *intro_text_; + QLabel *intro_banner_; + QLabel *intro_text_; - QSpacerItem *button_spacer_; + QSpacerItem *button_spacer_; - RaisedButton *register_button_; - RaisedButton *login_button_; + RaisedButton *register_button_; + RaisedButton *login_button_; }; |