From 0597f876469d8ef672a270528cbeecc069ab5e66 Mon Sep 17 00:00:00 2001
From: Rider Linden <rider@lindenlab.com>
Date: Wed, 15 Jun 2016 13:42:39 -0700
Subject: [PATCH] MAINT-6486: Use literal string. Don't try and look it up.

---
 indra/newview/llcompilequeue.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/indra/newview/llcompilequeue.cpp b/indra/newview/llcompilequeue.cpp
index c592a6c0c62..ea2e2843055 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;
         }
-- 
GitLab