diff options
author | Jacek Antonelli | 2008-08-15 23:44:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:50 -0500 |
commit | 89fe5dab825a62a0e3fd8d248cbc91c65eb2a426 (patch) | |
tree | bcff14b7888d04a2fec799c59369f6095224bd08 /linden/indra/newview/llcloud.h | |
parent | Second Life viewer sources 1.13.3.2 (diff) | |
download | meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.zip meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.gz meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.bz2 meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.xz |
Second Life viewer sources 1.14.0.0
Diffstat (limited to 'linden/indra/newview/llcloud.h')
-rw-r--r-- | linden/indra/newview/llcloud.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llcloud.h b/linden/indra/newview/llcloud.h index 8567792..0b670ee 100644 --- a/linden/indra/newview/llcloud.h +++ b/linden/indra/newview/llcloud.h | |||
@@ -129,7 +129,7 @@ public: | |||
129 | BOOL inGroup(const LLCloudPuff &puff) const; | 129 | BOOL inGroup(const LLCloudPuff &puff) const; |
130 | 130 | ||
131 | F32 getDensity() const { return mDensity; } | 131 | F32 getDensity() const { return mDensity; } |
132 | S32 getNumPuffs() const { return mCloudPuffs.count(); } | 132 | S32 getNumPuffs() const { return (S32) mCloudPuffs.size(); } |
133 | const LLCloudPuff &getPuff(const S32 i) { return mCloudPuffs[i]; } | 133 | const LLCloudPuff &getPuff(const S32 i) { return mCloudPuffs[i]; } |
134 | protected: | 134 | protected: |
135 | LLCloudLayer *mCloudLayerp; | 135 | LLCloudLayer *mCloudLayerp; |
@@ -137,7 +137,7 @@ protected: | |||
137 | F32 mDensity; | 137 | F32 mDensity; |
138 | S32 mTargetPuffCount; | 138 | S32 mTargetPuffCount; |
139 | 139 | ||
140 | LLDynamicArray<LLCloudPuff> mCloudPuffs; | 140 | std::vector<LLCloudPuff> mCloudPuffs; |
141 | LLPointer<LLVOClouds> mVOCloudsp; | 141 | LLPointer<LLVOClouds> mVOCloudsp; |
142 | }; | 142 | }; |
143 | 143 | ||