diff options
author | Rider Linden <rider@lindenlab.com> | 2015-06-03 16:04:40 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-06-03 16:04:40 -0700 |
commit | 0d3fb07bfa205b65f242ef2b761e827ff30e42fe (patch) | |
tree | fd2dfec3e9d1ff5ba1a325f264391c5d76156f09 /indra/newview/llfloaterabout.cpp | |
parent | 2f0e3de43eafc4aeab75b648ecdc0c275ac368f5 (diff) |
Remove vestigial httpclient.h include from files that no longer need it.
Diffstat (limited to 'indra/newview/llfloaterabout.cpp')
-rwxr-xr-x | indra/newview/llfloaterabout.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp index 952bc204b8..f58a5881a8 100755 --- a/indra/newview/llfloaterabout.cpp +++ b/indra/newview/llfloaterabout.cpp @@ -205,7 +205,7 @@ void LLFloaterAbout::startFetchServerReleaseNotes() // So we query the URL ourselves, expecting to find // an URL suitable for external browsers in the "Location:" HTTP header. std::string cap_url = region->getCapability("ServerReleaseNotes"); - //LLHTTPClient::get(cap_url, new LLServerReleaseNotesURLFetcher); + LLCoreHttpUtil::HttpCoroutineAdapter::callbackHttpGet(cap_url, &LLFloaterAbout::handleServerReleaseNotes, &LLFloaterAbout::handleServerReleaseNotes); |