summaryrefslogtreecommitdiff
path: root/indra/newview/llimfloatercontainer.h
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2012-06-08 17:26:13 -0700
committerMerov Linden <merov@lindenlab.com>2012-06-08 17:26:13 -0700
commit1aba6c119ef05a4cfd91325c8455dc8c60098746 (patch)
treeddd4a3611a0b22efcee6b38b696994c192d6d6c9 /indra/newview/llimfloatercontainer.h
parent3f7ecef1968b9087ba7c885a2dd6213120dfa547 (diff)
CHUI-137 : Implement conversation list, temporary solution: add but doesn't take out items from the list
Diffstat (limited to 'indra/newview/llimfloatercontainer.h')
-rw-r--r--indra/newview/llimfloatercontainer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llimfloatercontainer.h b/indra/newview/llimfloatercontainer.h
index 5cfdb41ad3..d04ac873fa 100644
--- a/indra/newview/llimfloatercontainer.h
+++ b/indra/newview/llimfloatercontainer.h
@@ -46,7 +46,7 @@ class LLTabContainer;
// CHUI-137 : Temporary implementation of conversations list
class LLConversationItem;
-typedef std::list<LLConversationItem> conversations_items_list_t;
+typedef std::list<LLConversationItem*> conversations_items_list_t;
typedef std::list<LLFolderViewItem*> conversations_widgets_list_t;
// Conversation items: we hold a list of those and create an LLFolderViewItem widget for each that we tuck
@@ -110,7 +110,7 @@ public:
std::string& tooltip_msg) { return FALSE; }
private:
std::string mName;
- LLUUID mUUID;
+ const LLUUID mUUID;
};
// CHUI-137 : End