summaryrefslogtreecommitdiff
path: root/indra/newview/llvoavatar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llvoavatar.cpp')
-rwxr-xr-xindra/newview/llvoavatar.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index 9cfc0f2fdd..2dbf3ac698 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -983,6 +983,15 @@ void LLVOAvatar::stopPhase(const std::string& phase_name)
timer.pause();
}
+void LLVOAvatar::stopAllPhases()
+{
+ for (phase_map_t::iterator iter = mPhases.begin();
+ iter != mPhases.end(); ++iter)
+ {
+ iter->second.pause();
+ }
+}
+
void LLVOAvatar::clearPhases()
{
mPhases.clear();