rename Reset to Clear to be consistent with XMLDocument

This commit is contained in:
Lee Thomason 2013-11-26 21:29:37 -08:00
parent 3bc3d4e24c
commit ce0510ba2d
1 changed files with 3 additions and 3 deletions

View File

@ -216,7 +216,7 @@ public:
} }
} }
void Reset() { void Clear() {
_size = 0; _size = 0;
} }
@ -1970,8 +1970,8 @@ public:
If in print to memory mode, reset the buffer to the If in print to memory mode, reset the buffer to the
beginning. beginning.
*/ */
void ResetBuffer() { void ClearBuffer() {
_buffer.Reset(); _buffer.Clear();
_buffer.Push(0); _buffer.Push(0);
} }