diff options
author | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
commit | 2a4dea528f670b9bb1f77ef27a8a1dd16603d114 (patch) | |
tree | 95c68e362703c9099d571ecbdc6142b1cda1e005 /linden/indra/llcharacter/llanimationstates.h | |
parent | Second Life viewer sources 1.20.6 (diff) | |
download | meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.zip meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.gz meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.bz2 meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.xz |
Second Life viewer sources 1.20.7
Diffstat (limited to 'linden/indra/llcharacter/llanimationstates.h')
-rw-r--r-- | linden/indra/llcharacter/llanimationstates.h | 13 |
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 | ||
228 | struct LLAnimStateEntry | 228 | struct 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 | }; |