diff options
author | andreykproductengine <akleshchev@productengine.com> | 2015-07-07 18:51:19 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2015-07-07 18:51:19 +0300 |
commit | 9790ec0c753b54d5ab0c7e6c54139888f49107e3 (patch) | |
tree | a76caf4520cdf9e69ba0b3001dfc3ba0449fd000 /indra/viewer_components/updater/llupdaterservice.cpp | |
parent | f153aa3daf2e70b6da8c113b55afff10af1f5fae (diff) |
MAINT-5174 Add Check for Updates feature to Help menu
Diffstat (limited to 'indra/viewer_components/updater/llupdaterservice.cpp')
-rwxr-xr-x | indra/viewer_components/updater/llupdaterservice.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/indra/viewer_components/updater/llupdaterservice.cpp b/indra/viewer_components/updater/llupdaterservice.cpp index c152493a51..abf4ac5e21 100755 --- a/indra/viewer_components/updater/llupdaterservice.cpp +++ b/indra/viewer_components/updater/llupdaterservice.cpp @@ -132,6 +132,7 @@ public: void startChecking(bool install_if_ready); void stopChecking(); + bool forceCheck(); bool isChecking(); LLUpdaterService::eUpdaterState getState(); @@ -266,6 +267,18 @@ void LLUpdaterServiceImpl::stopChecking() setState(LLUpdaterService::TERMINAL); } +bool LLUpdaterServiceImpl::forceCheck() +{ + if (mTimer.getStarted() + && !mIsDownloading) + { + mTimer.setTimerExpirySec(0); + setState(LLUpdaterService::CHECKING_FOR_UPDATE); + return true; + } + return false; +} + bool LLUpdaterServiceImpl::isChecking() { return mIsChecking; @@ -672,6 +685,11 @@ void LLUpdaterService::stopChecking() mImpl->stopChecking(); } +bool LLUpdaterService::forceCheck() +{ + return mImpl->forceCheck(); +} + bool LLUpdaterService::isChecking() { return mImpl->isChecking(); |