summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorsimon <none@none>2013-12-06 17:13:30 -0800
committersimon <none@none>2013-12-06 17:13:30 -0800
commit6212cd2950e334aff93ac577a68627d5801ca646 (patch)
tree3ca1c501f58691419f18810e2e29f8021ffcf546 /indra
parent5bef9571599bdeff5061046902b6afb174c6a3e2 (diff)
MAINT-3552: crash in LLPanel::getString: Failed to find string ErrorFetchingServerReleaseNotesURL in panel floater_about
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llfloaterabout.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp
index 06a97c9214..4331a63346 100755
--- a/indra/newview/llfloaterabout.cpp
+++ b/indra/newview/llfloaterabout.cpp
@@ -316,7 +316,7 @@ void LLServerReleaseNotesURLFetcher::completedHeader(U32 status, const std::stri
std::string location = content["location"].asString();
if (location.empty())
{
- location = floater_about->getString("ErrorFetchingServerReleaseNotesURL");
+ location = LLTrans::getString("ErrorFetchingServerReleaseNotesURL");
}
LLAppViewer::instance()->setServerReleaseNotesURL(location);
}