changed notation

This commit is contained in:
fourtf
2017-01-18 04:33:30 +01:00
parent 552e4c957a
commit 10e4a0f785
61 changed files with 1214 additions and 1051 deletions
+4 -4
View File
@@ -1,10 +1,10 @@
#include "account.h"
const Account *Account::m_anon = new Account("justinfan123", "", "");
Account Account::anon("justinfan123", "", "");
Account::Account(QString username, QString oauthToken, QString oauthClient)
{
m_oauthClient = oauthClient;
m_oauthToken = oauthToken;
m_username = username;
this->oauthClient = oauthClient;
this->oauthToken = oauthToken;
this->username = username;
}