diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-10-14 20:49:16 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-10-14 20:49:16 +0300 |
commit | bd42fd13b038dea5bddf06ed8da7b51d08b38bae (patch) | |
tree | 7f752a2d75c480ddee7f384a35dcd74fbdecef34 /indra/newview/llconversationlog.h | |
parent | 5ce0d6268b4750fb376c293d566736052185f638 (diff) |
SL-11719 Fixed init of conversation log
Diffstat (limited to 'indra/newview/llconversationlog.h')
-rw-r--r-- | indra/newview/llconversationlog.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llconversationlog.h b/indra/newview/llconversationlog.h index f241276abb..46e46a3278 100644 --- a/indra/newview/llconversationlog.h +++ b/indra/newview/llconversationlog.h @@ -107,7 +107,7 @@ private: * To distinguish two conversations with the same sessionID it's also needed to compare their creation date. */ -class LLConversationLog : public LLParamSingleton<LLConversationLog>, LLIMSessionObserver +class LLConversationLog : public LLSingleton<LLConversationLog>, LLIMSessionObserver { LLSINGLETON(LLConversationLog); public: @@ -148,6 +148,12 @@ public: bool isLogEmpty() { return mConversations.empty(); } /** + * inits connection to per account settings, + * loads saved file and inits enabled state + */ + void initLoggingState(); + + /** * constructs file name in which conversations log will be saved * file name is conversation.log */ |