diff options
author | Richard Linden <none@none> | 2013-03-11 00:37:50 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-03-11 00:37:50 -0700 |
commit | 1a256eca280e41a672fc87e083db851ab180612c (patch) | |
tree | e6a299f9a5b908b322d54ff352035d349aeb7af5 /indra/llcommon/lltracerecording.cpp | |
parent | 4e3fddf271e6ff4557f594b6a8c036ab2a4e413f (diff) |
renamed some variables/methods in LLTrace to make things clearer
Diffstat (limited to 'indra/llcommon/lltracerecording.cpp')
-rw-r--r-- | indra/llcommon/lltracerecording.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/lltracerecording.cpp b/indra/llcommon/lltracerecording.cpp index ab8dbce2ce..3df06c5172 100644 --- a/indra/llcommon/lltracerecording.cpp +++ b/indra/llcommon/lltracerecording.cpp @@ -109,10 +109,10 @@ void Recording::handleSplitTo(Recording& other) { stop(); other.restart(); - syncTo(other); + handOffTo(other); } -void Recording::syncTo(Recording& other) +void Recording::handOffTo(Recording& other) { other.mCountsFloat.write()->reset(mCountsFloat); other.mMeasurementsFloat.write()->reset(mMeasurementsFloat); |