From 740363133f6c066c3829232c6141ba822ed73e64 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 2 Jan 2007 20:26:49 +0000 Subject: [PATCH] Fixed the COPY_OP( Array, DEEP_COPY_ARRAYS); entry. --- src/osg/CopyOp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osg/CopyOp.cpp b/src/osg/CopyOp.cpp index b166b6b87..79e638eb3 100644 --- a/src/osg/CopyOp.cpp +++ b/src/osg/CopyOp.cpp @@ -36,7 +36,7 @@ COPY_OP( Drawable, DEEP_COPY_DRAWABLES ); COPY_OP( StateSet, DEEP_COPY_STATESETS ); COPY_OP( Texture, DEEP_COPY_TEXTURES ); COPY_OP( Image, DEEP_COPY_IMAGES ); -COPY_OP( Array, DEEP_COPY_DRAWABLES ); +COPY_OP( Array, DEEP_COPY_ARRAYS ); COPY_OP( PrimitiveSet, DEEP_COPY_PRIMITIVES ); COPY_OP( Shape, DEEP_COPY_SHAPES ); COPY_OP( Uniform, DEEP_COPY_UNIFORMS );