summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerregion.cpp
diff options
context:
space:
mode:
authorXiaohong Bao <bao@lindenlab.com>2014-01-31 18:51:50 -0700
committerXiaohong Bao <bao@lindenlab.com>2014-01-31 18:51:50 -0700
commit2ab11c8e34f2349500aef76cd8372ca889020728 (patch)
tree34638196253077967c2aaf6620064dc35ef1d434 /indra/newview/llviewerregion.cpp
parent01f8595bb216b93fd54be45ab06a426b23099c87 (diff)
fix some compiling errors
Diffstat (limited to 'indra/newview/llviewerregion.cpp')
-rwxr-xr-xindra/newview/llviewerregion.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp
index e2143babcf..1191ec0f28 100755
--- a/indra/newview/llviewerregion.cpp
+++ b/indra/newview/llviewerregion.cpp
@@ -1035,7 +1035,7 @@ void LLViewerRegion::addVisibleChildCacheEntry(LLVOCacheEntry* parent, LLVOCache
child = parent->getChild();
while(child != NULL)
{
- addVisibleCacheEntry(NULL, child);
+ addVisibleChildCacheEntry(NULL, child);
child = parent->getChild();
}
}
@@ -2123,7 +2123,7 @@ void LLViewerRegion::decodeBoundingInfo(LLVOCacheEntry* entry)
if(!parent->isState(LLVOCacheEntry::INACTIVE))
{
//parent is visible, so is the child.
- addVisibleCacheEntry(parent, entry);
+ addVisibleChildCacheEntry(parent, entry);
}
else
{