remove warnings

This commit is contained in:
dante ruiz 2019-10-03 09:26:58 -07:00
parent a7ea16f685
commit 4fca8ae31a
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ void LauncherState::toggleDebugState() {
void LauncherState::gotoNextDebugScreen() {
if (_currentDebugScreen < (UIState::UI_STATE_NUM - 1)) {
_currentDebugScreen = (UIState)(_currentDebugScreen + 1);
UIState updatedUIState = getUIState();
//UIState updatedUIState = getUIState();
emit uiStateChanged();
emit updateSourceUrl(PathUtils::resourcePath(getCurrentUISource()));
_uiState = getUIState();

View file

@ -25,7 +25,7 @@ class LauncherState : public QObject {
Q_PROPERTY(ApplicationState applicationState READ getApplicationState NOTIFY applicationStateChanged)
Q_PROPERTY(float downloadProgress READ getDownloadProgress NOTIFY downloadProgressChanged)
Q_PROPERTY(SignupRequest::Error lastSignupError MEMBER _lastSignupError NOTIFY lastSignupErrorChanged)
Q_PROPERTY(QString lastLoginErrorMessage READ getLastLoginErrorMessage NOTIFY lastLoginErrorMessageChanged);
Q_PROPERTY(QString lastLoginErrorMessage READ getLastLoginErrorMessage NOTIFY lastLoginErrorMessageChanged)
Q_PROPERTY(QString buildVersion READ getBuildVersion)
public: