summaryrefslogtreecommitdiff
path: root/indra/newview/lllocaltextureobject.h
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2009-10-21 21:37:27 +0000
committerLoren Shih <seraph@lindenlab.com>2009-10-21 21:37:27 +0000
commit5164ed388c1e328cb80dec304ba2fd249ef662f4 (patch)
treedf6f0f691faa1fae32f376a7b0c582127b7f2507 /indra/newview/lllocaltextureobject.h
parentb3d1eb82fadbf3a098abb49d2ef23cade4c6fe95 (diff)
Code audit for r136515 ("merging in new wearable infrastructure...")
No expected functionality change; this mostly contains cosmetic cleanup. Reviewed by: Nyx
Diffstat (limited to 'indra/newview/lllocaltextureobject.h')
-rw-r--r--indra/newview/lllocaltextureobject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/lllocaltextureobject.h b/indra/newview/lllocaltextureobject.h
index 138bbad677..461756ee46 100644
--- a/indra/newview/lllocaltextureobject.h
+++ b/indra/newview/lllocaltextureobject.h
@@ -49,8 +49,8 @@ class LLLocalTextureObject
{
public:
LLLocalTextureObject();
- LLLocalTextureObject(LLViewerFetchedTexture *image, LLUUID id);
- LLLocalTextureObject(const LLLocalTextureObject &lto);
+ LLLocalTextureObject(LLViewerFetchedTexture* image, LLUUID& id);
+ LLLocalTextureObject(const LLLocalTextureObject& lto);
~LLLocalTextureObject();
LLViewerFetchedTexture* getImage() const;
@@ -79,8 +79,8 @@ private:
// NOTE: LLLocalTextureObject should be the exclusive owner of mTexEntry and mTexLayer
// using shared pointers here only for smart assignment & cleanup
// do NOT create new shared pointers to these objects, or keep pointers to them around
- typedef std::vector<LLTexLayer*> tex_layer_p;
- tex_layer_p mTexLayers;
+ typedef std::vector<LLTexLayer*> tex_layer_vec_t;
+ tex_layer_vec_t mTexLayers;
LLUUID mID;