diff options
author | Andrew <forkk@forkk.net> | 2013-02-25 13:24:46 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-02-25 13:24:46 -0600 |
commit | 498225debdb22d83e591635dbd172cca12476279 (patch) | |
tree | e26d8f8de3bed7d22cfc25ee010c999b9481ec87 /data/userinfo.h | |
parent | a7111b132873e0f1e00221b2ad734454d69889e3 (diff) | |
download | PrismLauncher-498225debdb22d83e591635dbd172cca12476279.tar.gz PrismLauncher-498225debdb22d83e591635dbd172cca12476279.tar.bz2 PrismLauncher-498225debdb22d83e591635dbd172cca12476279.zip |
Rewrote the settings system. It may still need some work.
Diffstat (limited to 'data/userinfo.h')
-rw-r--r-- | data/userinfo.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/userinfo.h b/data/userinfo.h index ccfc741e..486ce2a6 100644 --- a/data/userinfo.h +++ b/data/userinfo.h @@ -25,15 +25,15 @@ public: explicit UserInfo(const QString& username, const QString& password, QObject *parent = 0); explicit UserInfo(const UserInfo& other); - QString getUsername() const; + QString username() const; void setUsername(const QString& username); - QString getPassword() const; + QString password() const; void setPassword(const QString& password); protected: - QString username; - QString password; + QString m_username; + QString m_password; }; #endif // USERINFO_H |