aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcharacter/llanimationstates.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llcharacter/llanimationstates.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/linden/indra/llcharacter/llanimationstates.h b/linden/indra/llcharacter/llanimationstates.h
index b2ed27a..dd269de 100644
--- a/linden/indra/llcharacter/llanimationstates.h
+++ b/linden/indra/llcharacter/llanimationstates.h
@@ -227,13 +227,18 @@ public:
227 227
228struct LLAnimStateEntry 228struct LLAnimStateEntry
229{ 229{
230 LLAnimStateEntry(const char* label, const char* name, const LLUUID& id) 230 LLAnimStateEntry(const char* name, const LLUUID& id) :
231 : mLabel(label),
232 mName(name), 231 mName(name),
233 mID(id) 232 mID(id)
234 { } 233 {
234 // LABELS:
235 // Look to newview/LLAnimStateLabels.* for how to get the labels.
236 // The labels should no longer be stored in this structure. The server
237 // shouldn't care about the local friendly name of an animation, and
238 // this is common code.
239 }
240
235 241
236 const char* mLabel;
237 const char* mName; 242 const char* mName;
238 const LLUUID mID; 243 const LLUUID mID;
239}; 244};