summaryrefslogtreecommitdiff
path: root/indra/llappearance/llavatarjoint.h
diff options
context:
space:
mode:
authorNyx (Neal Orman) <nyx@lindenlab.com>2012-09-14 11:29:17 -0400
committerNyx (Neal Orman) <nyx@lindenlab.com>2012-09-14 11:29:17 -0400
commit8b2cb3766e3ed546994f81518983283e68263b09 (patch)
tree96cefa4858750b3f26fc324f8a4d54c51aecba18 /indra/llappearance/llavatarjoint.h
parent4e342f21ce8472bd1d9b34fdc2757a63ab24db52 (diff)
BUILDFIX: WIN fixing up windows building issues
Cleaned up a couple of things that the windows compiler was warning about, with our inheritance structure
Diffstat (limited to 'indra/llappearance/llavatarjoint.h')
-rw-r--r--indra/llappearance/llavatarjoint.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llappearance/llavatarjoint.h b/indra/llappearance/llavatarjoint.h
index 1dfbd37456..fec91503c7 100644
--- a/indra/llappearance/llavatarjoint.h
+++ b/indra/llappearance/llavatarjoint.h
@@ -59,7 +59,7 @@ public:
// Returns true if this object is transparent.
// This is used to determine in which order to draw objects.
- virtual BOOL isTransparent() { return FALSE; }
+ virtual BOOL isTransparent() { return mIsTransparent; }
// Returns true if this object should inherit scale modifiers from its immediate parent
virtual BOOL inheritScale() { return FALSE; }
@@ -113,6 +113,7 @@ protected:
void init();
BOOL mValid;
+ BOOL mIsTransparent;
U32 mComponents;
F32 mMinPixelArea;
LLJointPickName mPickName;