summaryrefslogtreecommitdiff
path: root/common/array.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/array.cpp')
-rwxr-xr-xcommon/array.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/array.cpp b/common/array.cpp
index 0811d2d..3d58c55 100755
--- a/common/array.cpp
+++ b/common/array.cpp
@@ -181,7 +181,7 @@ void ObjArray<T>::InsertAt(int Index, const T& Obj)
else
Expand(1);
- m_nLength++;
+ m_Length++;
for (int i = m_Length - 1; i > Index; i--)
m_Data[i] = m_Data[i-1];