aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview')
-rw-r--r--linden/indra/newview/llfloaterscriptdebug.cpp3
-rw-r--r--linden/indra/newview/llfloaterscriptdebug.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/linden/indra/newview/llfloaterscriptdebug.cpp b/linden/indra/newview/llfloaterscriptdebug.cpp
index bc774e7..e6962d2 100644
--- a/linden/indra/newview/llfloaterscriptdebug.cpp
+++ b/linden/indra/newview/llfloaterscriptdebug.cpp
@@ -223,7 +223,8 @@ void LLFloaterScriptDebugOutput::addLine(const std::string &utf8mesg, const std:
223 setTitle(user_name); 223 setTitle(user_name);
224 } 224 }
225 225
226 mHistoryEditor->appendColoredText(utf8mesg, false, true, color); 226 mHistoryEditor->appendTime(true);
227 mHistoryEditor->appendColoredText(utf8mesg, false, false, color);
227} 228}
228 229
229//static 230//static
diff --git a/linden/indra/newview/llfloaterscriptdebug.h b/linden/indra/newview/llfloaterscriptdebug.h
index 59c0ba1..7c36c53 100644
--- a/linden/indra/newview/llfloaterscriptdebug.h
+++ b/linden/indra/newview/llfloaterscriptdebug.h
@@ -35,7 +35,7 @@
35 35
36#include "llfloater.h" 36#include "llfloater.h"
37 37
38class LLTextEditor; 38class LLViewerTextEditor;
39class LLUUID; 39class LLUUID;
40 40
41class LLFloaterScriptDebug : public LLMultiFloater 41class LLFloaterScriptDebug : public LLMultiFloater
@@ -73,7 +73,7 @@ public:
73 static LLFloaterScriptDebugOutput* getFloaterByID(const LLUUID& id); 73 static LLFloaterScriptDebugOutput* getFloaterByID(const LLUUID& id);
74 74
75protected: 75protected:
76 LLTextEditor* mHistoryEditor; 76 LLViewerTextEditor* mHistoryEditor;
77 77
78 typedef std::map<LLUUID, LLFloaterScriptDebugOutput*> instance_map_t; 78 typedef std::map<LLUUID, LLFloaterScriptDebugOutput*> instance_map_t;
79 static instance_map_t sInstanceMap; 79 static instance_map_t sInstanceMap;