From 8b716655e2152bb7558e00a5061f1381f9a9bd6e Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 4 Feb 2019 20:38:01 +0100 Subject: Cleanup: replace BKE_id_copy_ex by BKE_id_copy where possible. That way it is obvious when we are using default ID copy behaviour, and when we are using advanced/specialized ones. --- source/blender/blenkernel/intern/lattice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenkernel/intern/lattice.c') diff --git a/source/blender/blenkernel/intern/lattice.c b/source/blender/blenkernel/intern/lattice.c index 0c19cc277a2..52627bd8fb1 100644 --- a/source/blender/blenkernel/intern/lattice.c +++ b/source/blender/blenkernel/intern/lattice.c @@ -292,7 +292,7 @@ void BKE_lattice_copy_data(Main *bmain, Lattice *lt_dst, const Lattice *lt_src, Lattice *BKE_lattice_copy(Main *bmain, const Lattice *lt) { Lattice *lt_copy; - BKE_id_copy_ex(bmain, <->id, (ID **)<_copy, LIB_ID_COPY_SHAPEKEY); + BKE_id_copy(bmain, <->id, (ID **)<_copy); return lt_copy; } -- cgit v1.2.3