Skip to content
Snippets Groups Projects
Commit 6c8f447e authored by coyot@coyot-sager-PC's avatar coyot@coyot-sager-PC
Browse files

SL-323: activate viewer menu and floater checks for updates via VMP

parent c417b263
No related branches found
No related tags found
No related merge requests found
...@@ -90,7 +90,7 @@ class LLFloaterAbout ...@@ -90,7 +90,7 @@ class LLFloaterAbout
static LLSD getInfo(); static LLSD getInfo();
void onClickCopyToClipboard(); void onClickCopyToClipboard();
void onClickUpdateCheck(); void onClickUpdateCheck();
void setUpdateListener(); static void setUpdateListener();
private: private:
void setSupportText(const std::string& server_release_notes_url); void setSupportText(const std::string& server_release_notes_url);
...@@ -138,7 +138,7 @@ BOOL LLFloaterAbout::postBuild() ...@@ -138,7 +138,7 @@ BOOL LLFloaterAbout::postBuild()
boost::bind(&LLFloaterAbout::onClickCopyToClipboard, this)); boost::bind(&LLFloaterAbout::onClickCopyToClipboard, this));
getChild<LLUICtrl>("update_btn")->setCommitCallback( getChild<LLUICtrl>("update_btn")->setCommitCallback(
boost::bind(&LLFloaterAbout::setUpdateListener, this)); boost::bind(&LLFloaterAbout::onClickUpdateCheck, this));
static const LLUIColor about_color = LLUIColorTable::instance().getColor("TextFgReadOnlyColor"); static const LLUIColor about_color = LLUIColorTable::instance().getColor("TextFgReadOnlyColor");
...@@ -314,6 +314,11 @@ void LLFloaterAbout::onClickCopyToClipboard() ...@@ -314,6 +314,11 @@ void LLFloaterAbout::onClickCopyToClipboard()
support_widget->deselect(); support_widget->deselect();
} }
void LLFloaterAbout::onClickUpdateCheck()
{
setUpdateListener();
}
void LLFloaterAbout::setSupportText(const std::string& server_release_notes_url) void LLFloaterAbout::setSupportText(const std::string& server_release_notes_url)
{ {
#if LL_WINDOWS #if LL_WINDOWS
...@@ -401,17 +406,17 @@ void LLFloaterAbout::setUpdateListener() ...@@ -401,17 +406,17 @@ void LLFloaterAbout::setUpdateListener()
} }
} }
if ( ! downloads) if ( !downloads )
{ {
LLNotificationsUtil::add("UpdateViewerUpToDate"); LLNotificationsUtil::add("UpdateViewerUpToDate");
} }
else else
{ {
if ( ! done ) if ( !done )
{ {
LLNotificationsUtil::add("UpdateDownloadInProgress"); LLNotificationsUtil::add("UpdateDownloadInProgress");
} }
else if ( !next and !skip ) else if ( (!next) && (!skip) )
{ {
LLNotificationsUtil::add("UpdateDownloadComplete"); LLNotificationsUtil::add("UpdateDownloadComplete");
} }
...@@ -429,6 +434,10 @@ void LLFloaterAboutUtil::registerFloater() ...@@ -429,6 +434,10 @@ void LLFloaterAboutUtil::registerFloater()
{ {
LLFloaterReg::add("sl_about", "floater_about.xml", LLFloaterReg::add("sl_about", "floater_about.xml",
&LLFloaterReg::build<LLFloaterAbout>); &LLFloaterReg::build<LLFloaterAbout>);
}
void LLFloaterAboutUtil::checkUpdatesAndNotify()
{
LLFloaterAbout::setUpdateListener();
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment