]> git.lyx.org Git - features.git/blobdiff - src/mathed/array.C
mathed35.diff
[features.git] / src / mathed / array.C
index 80568195631219050d9c052c31d141efc7f83fa7..eba96ab49546616a7ac21e63d35352959502626b 100644 (file)
@@ -219,9 +219,9 @@ void MathedArray::insert(MathedArray::iterator pos,
        last_ = bf_.size() - 1;
 }
 #else
-void MathedArray::mergeF(MathedArray * a, int p, int dx)
+void MathedArray::merge(MathedArray const & a, int p)
 {
-       my_memcpy(&bf_[p], &a->bf_[0], dx);
+       my_memcpy(&bf_[p], &a.bf_[0], a.last());
 }
 #endif