summaryrefslogtreecommitdiff
path: root/common/array.cpp
diff options
context:
space:
mode:
authorleo2005-06-05 01:51:55 +0000
committerleo2005-06-05 01:51:55 +0000
commitf9f670643398aac6ad917505ccd76d2cf50230c7 (patch)
tree11e5c96a29e36d26a766d2d9c25d0dd83af7ebf3 /common/array.cpp
parent583033b8bc46f46a039144c0d8fa97d406bc64ee (diff)
Updated LeoCAD to use GTK+ 2.0
git-svn-id: http://svn.leocad.org/trunk@403 c7d43263-9d01-0410-8a33-9dba5d9f93d6
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];