diff options
author | Vadim Savchuk <vsavchuk@productengine.com> | 2009-11-27 17:18:55 +0200 |
---|---|---|
committer | Vadim Savchuk <vsavchuk@productengine.com> | 2009-11-27 17:18:55 +0200 |
commit | a703d9eff9af18b109d44e677e616209b1272a13 (patch) | |
tree | 8360ac8e78fc139ac8581de729c5c49bb0bd1715 /indra/newview | |
parent | 3710517829bdcc55f9db79f274d5498a4fc63db2 (diff) |
Fixed low priority bug EXT-2935 (IM log in plain text contains redundant
space between timestamp and bracket).
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/lllogchat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lllogchat.cpp b/indra/newview/lllogchat.cpp index 941ccc227c..9caa863bd8 100644 --- a/indra/newview/lllogchat.cpp +++ b/indra/newview/lllogchat.cpp @@ -77,12 +77,12 @@ std::string LLLogChat::timestamp(bool withdate) +LLTrans::getString ("TimeMonth")+"]/[" +LLTrans::getString ("TimeDay")+"] [" +LLTrans::getString ("TimeHour")+"]:[" - +LLTrans::getString ("TimeMin")+"] "; + +LLTrans::getString ("TimeMin")+"]"; } else { timeStr = "[" + LLTrans::getString("TimeHour") + "]:[" - + LLTrans::getString ("TimeMin")+"] "; + + LLTrans::getString ("TimeMin")+"]"; } LLStringUtil::format (timeStr, substitution); |