summaryrefslogtreecommitdiff
path: root/indra/newview/llwearabletype.h
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2010-05-13 17:24:54 -0400
committerLoren Shih <seraph@lindenlab.com>2010-05-13 17:24:54 -0400
commitaebb49520b1919e0ac2bcc7373fc2db031e3b7f0 (patch)
tree1af8dfa79e015a1dfbb2c6af7b3f1d4c34bc949d /indra/newview/llwearabletype.h
parent25711e6bce2baae1e6fd05948db11b2233cabf08 (diff)
EXT-7305 : FIXED : Changed LLWearableDictionary to LLWearableType
Change enum naming to use WT_INVALID=255 instead of WT_NONE=255. Added WT_NONE as -1.
Diffstat (limited to 'indra/newview/llwearabletype.h')
-rw-r--r--indra/newview/llwearabletype.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llwearabletype.h b/indra/newview/llwearabletype.h
index e6d955b6d5..8090fd8df7 100644
--- a/indra/newview/llwearabletype.h
+++ b/indra/newview/llwearabletype.h
@@ -59,7 +59,8 @@ public:
WT_TATTOO = 14,
WT_COUNT = 15,
- WT_NONE = 255,
+ WT_INVALID = 255,
+ WT_NONE = -1,
};
static const std::string& getTypeName(EType type);