diff options
| author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-05-19 12:01:32 +0300 |
|---|---|---|
| committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-05-19 12:01:32 +0300 |
| commit | 193a298266c251a6be153cf37f5b2d2aa8513101 (patch) | |
| tree | 324fd3d88706e182f09cebffc882333d937f5fcf /indra/newview/lllogchat.cpp | |
| parent | 76872412a26911e37bd13602ca6c29885dfd0f11 (diff) | |
MAINT-5201 FIXED 'Chat history' option in context menu does not works for multiperson chat.
Diffstat (limited to 'indra/newview/lllogchat.cpp')
| -rwxr-xr-x | indra/newview/lllogchat.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/indra/newview/lllogchat.cpp b/indra/newview/lllogchat.cpp index 7ddacf3033..4116e38f11 100755 --- a/indra/newview/lllogchat.cpp +++ b/indra/newview/lllogchat.cpp @@ -804,6 +804,22 @@ bool LLLogChat::isNearbyTranscriptExist() return false; } +bool LLLogChat::isAdHocTranscriptExist(std::string file_name) +{ + std::vector<std::string> list_of_transcriptions; + LLLogChat::getListOfTranscriptFiles(list_of_transcriptions); + + file_name = makeLogFileName(file_name); + BOOST_FOREACH(std::string& transcript_file_name, list_of_transcriptions) + { + if (transcript_file_name == file_name) + { + return true; + } + } + return false; +} + //*TODO mark object's names in a special way so that they will be distinguishable form avatar name //which are more strict by its nature (only firstname and secondname) //Example, an object's name can be written like "Object <actual_object's_name>" |
