diff options
author | Merov Linden <merov@lindenlab.com> | 2012-08-23 19:44:10 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-08-23 19:44:10 -0700 |
commit | e537d6477dfa1eea86dc16c767b793fb530d1ebc (patch) | |
tree | 4c78bd50b9b5e2cd9398ede96038898eb2705b63 /indra/newview/llconversationview.cpp | |
parent | 15d957616ebac22a9f4633b6d806f8519423593b (diff) |
CHUI-98 : Defining the various llconversation sub classes in their respective file
Diffstat (limited to 'indra/newview/llconversationview.cpp')
-rw-r--r-- | indra/newview/llconversationview.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/indra/newview/llconversationview.cpp b/indra/newview/llconversationview.cpp index 6cc911ecef..fefb7e9cac 100644 --- a/indra/newview/llconversationview.cpp +++ b/indra/newview/llconversationview.cpp @@ -32,6 +32,10 @@ #include "llimconversation.h" #include "llimfloatercontainer.h" +// +// Implementation of conversations list session widgets +// + LLConversationViewSession::Params::Params() : container() {} @@ -75,4 +79,13 @@ void LLConversationViewSession::setVisibleIfDetached(BOOL visible) } } +// +// Implementation of conversations list participant (avatar) widgets +// + +LLConversationViewParticipant::LLConversationViewParticipant( const LLFolderViewItem::Params& p ): + LLFolderViewItem(p) +{ +} + // EOF |