summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2016-06-15 13:42:39 -0700
committerRider Linden <rider@lindenlab.com>2016-06-15 13:42:39 -0700
commit0597f876469d8ef672a270528cbeecc069ab5e66 (patch)
tree4dbf66e1a9dde2d615f1f9ebb087044e50f50dbd
parentc664ae73c3fa46e430306d7b24af3026246f8097 (diff)
MAINT-6486: Use literal string. Don't try and look it up.
-rw-r--r--indra/newview/llcompilequeue.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llcompilequeue.cpp b/indra/newview/llcompilequeue.cpp
index c592a6c0c6..ea2e284305 100644
--- a/indra/newview/llcompilequeue.cpp
+++ b/indra/newview/llcompilequeue.cpp
@@ -393,7 +393,7 @@ bool LLFloaterCompileQueue::processScript(LLHandle<LLFloaterCompileQueue> hfloat
if (result.has("timeout") && result["timeout"].asBoolean())
{
- std::string buffer = that->getString("Timeout") + ": " + inventory->getName();
+ std::string buffer = "Timeout: " + inventory->getName();
that->addStringMessage(buffer);
return true;
}
@@ -443,7 +443,7 @@ bool LLFloaterCompileQueue::processScript(LLHandle<LLFloaterCompileQueue> hfloat
{
if (result.has("timeout") && result["timeout"].asBoolean())
{
- std::string buffer = that->getString("Timeout") + ": " + inventory->getName();
+ std::string buffer = "Timeout: " + inventory->getName();
that->addStringMessage(buffer);
return true;
}
@@ -497,7 +497,7 @@ bool LLFloaterCompileQueue::processScript(LLHandle<LLFloaterCompileQueue> hfloat
{
if (result.has("timeout") && result["timeout"].asBoolean())
{
- std::string buffer = that->getString("Timeout") + ": " + inventory->getName();
+ std::string buffer = "Timeout: " + inventory->getName();
that->addStringMessage(buffer);
return true;
}