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_;
};
|