summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorEugene Kondrashev <ekondrashev@productengine.com>2009-11-03 13:11:49 +0200
committerEugene Kondrashev <ekondrashev@productengine.com>2009-11-03 13:11:49 +0200
commitc940d3d5b92ba915a51e98c9141243ccd6b5145b (patch)
tree6545ca3a741dcf74083a7c1427c19c39782e2f22 /indra/newview
parent3a09e94c7cc23279a4e5353baf81b3ba2dc3e6f4 (diff)
Added 'Loading...' message to avatarlist while opening group/adhoc chat
--HG-- branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llparticipantlist.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llparticipantlist.cpp b/indra/newview/llparticipantlist.cpp
index e97eb1df2b..918c7989ed 100644
--- a/indra/newview/llparticipantlist.cpp
+++ b/indra/newview/llparticipantlist.cpp
@@ -32,6 +32,9 @@
#include "llviewerprecompiledheaders.h"
+// common includes
+#include "lltrans.h"
+
#include "llparticipantlist.h"
#include "llavatarlist.h"
#include "llspeakers.h"
@@ -49,6 +52,8 @@ LLParticipantList::LLParticipantList(LLSpeakerMgr* data_source, LLAvatarList* av
mSpeakerMgr->addListener(mSpeakerRemoveListener, "remove");
mSpeakerMgr->addListener(mSpeakerClearListener, "clear");
+ mAvatarList->setNoItemsCommentText(LLTrans::getString("LoadingData"));
+
//Lets fill avatarList with existing speakers
LLAvatarList::uuid_vector_t& group_members = mAvatarList->getIDs();