From 0618fa04ffe3d4dc6d816b60bdba729e35ffac35 Mon Sep 17 00:00:00 2001 From: Sofian Audry Date: Wed, 1 Apr 2020 18:54:10 -0400 Subject: [PATCH] Removed unused variable. --- src/core/Commands.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/core/Commands.h b/src/core/Commands.h index 8d68f0e..945f41d 100644 --- a/src/core/Commands.h +++ b/src/core/Commands.h @@ -170,8 +170,10 @@ protected: // Perform the actual transformation on the shape. virtual void _doTransform(MShape::ptr shape); - // Information pertaining to the moving of vertex. - int _movedVertex; + // Information pertaining to flip transformation. + QTransform _transform; + MShape::ptr _initialShape; +}; QTransform _transform; MShape::ptr _initialShape; };