mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 12:14:00 +02:00
CR fixes
This commit is contained in:
parent
5d40e1e480
commit
94146ab997
2 changed files with 5 additions and 5 deletions
|
@ -69,7 +69,7 @@ public:
|
|||
const QString& textureFolder);
|
||||
|
||||
Q_INVOKABLE AvatarProjectStatus::AvatarProjectStatus openAvatarProject(const QString& avatarProjectFSTPath);
|
||||
Q_INVOKABLE bool isValidNewProjectName(const QString& projectPath, const QString& projectName) {
|
||||
Q_INVOKABLE bool isValidNewProjectName(const QString& projectPath, const QString& projectName) const {
|
||||
return AvatarProject::isValidNewProjectName(projectPath, projectName);
|
||||
}
|
||||
|
||||
|
|
|
@ -153,15 +153,15 @@ private:
|
|||
QUrl _authURL;
|
||||
|
||||
DataServerAccountInfo _accountInfo;
|
||||
bool _isWaitingForTokenRefresh{ false };
|
||||
bool _isAgent{ false };
|
||||
bool _isWaitingForTokenRefresh { false };
|
||||
bool _isAgent { false };
|
||||
|
||||
bool _isWaitingForKeypairResponse { false };
|
||||
QByteArray _pendingPrivateKey;
|
||||
|
||||
QUuid _sessionID{ QUuid::createUuid() };
|
||||
QUuid _sessionID { QUuid::createUuid() };
|
||||
|
||||
bool _limitedCommerce{ false };
|
||||
bool _limitedCommerce { false };
|
||||
};
|
||||
|
||||
#endif // hifi_AccountManager_h
|
||||
|
|
Loading…
Reference in a new issue