[Bf-blender-cvs] [2fe954f23ec] blender2.8: Cleanup: transform manipulator filename

Campbell Barton noreply at git.blender.org
Sun May 6 16:14:17 CEST 2018


Commit: 2fe954f23ecc96370d0a1651ef5f01c048f905a2
Author: Campbell Barton
Date:   Sun May 6 16:12:42 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB2fe954f23ecc96370d0a1651ef5f01c048f905a2

Cleanup: transform manipulator filename

Use matching 2d/3d suffix.

===================================================================

M	source/blender/editors/transform/CMakeLists.txt
R098	source/blender/editors/transform/transform_manipulator2d.c	source/blender/editors/transform/transform_manipulator_2d.c
R099	source/blender/editors/transform/transform_manipulator.c	source/blender/editors/transform/transform_manipulator_3d.c

===================================================================

diff --git a/source/blender/editors/transform/CMakeLists.txt b/source/blender/editors/transform/CMakeLists.txt
index f38f6c064b8..3e132192875 100644
--- a/source/blender/editors/transform/CMakeLists.txt
+++ b/source/blender/editors/transform/CMakeLists.txt
@@ -46,8 +46,8 @@ set(SRC
 	transform_conversions.c
 	transform_generics.c
 	transform_input.c
-	transform_manipulator.c
-	transform_manipulator2d.c
+	transform_manipulator_2d.c
+	transform_manipulator_3d.c
 	transform_ops.c
 	transform_orientations.c
 	transform_snap.c
diff --git a/source/blender/editors/transform/transform_manipulator2d.c b/source/blender/editors/transform/transform_manipulator_2d.c
similarity index 98%
rename from source/blender/editors/transform/transform_manipulator2d.c
rename to source/blender/editors/transform/transform_manipulator_2d.c
index a9414a7f4bf..d2743f47000 100644
--- a/source/blender/editors/transform/transform_manipulator2d.c
+++ b/source/blender/editors/transform/transform_manipulator_2d.c
@@ -15,15 +15,10 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * The Original Code is Copyright (C) 2016 Blender Foundation.
- * All rights reserved.
- *
- * Contributor(s): none yet.
- *
  * ***** END GPL LICENSE BLOCK *****
  */
 
-/** \file blender/editors/transform/transform_manipulator2d.c
+/** \file blender/editors/transform/transform_manipulator_2d.c
  *  \ingroup edtransform
  *
  * \name 2D Transform Manipulator
diff --git a/source/blender/editors/transform/transform_manipulator.c b/source/blender/editors/transform/transform_manipulator_3d.c
similarity index 99%
rename from source/blender/editors/transform/transform_manipulator.c
rename to source/blender/editors/transform/transform_manipulator_3d.c
index c223ff03525..4f87fabce05 100644
--- a/source/blender/editors/transform/transform_manipulator.c
+++ b/source/blender/editors/transform/transform_manipulator_3d.c
@@ -15,21 +15,17 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * The Original Code is Copyright (C) 2005 Blender Foundation
- * All rights reserved.
- *
- * The Original Code is: all of this file.
- *
- * Contributor(s): none yet.
- *
  * ***** END GPL LICENSE BLOCK *****
  */
 
-/** \file blender/editors/transform/transform_manipulator.c
+/** \file blender/editors/transform/transform_manipulator_2d.c
  *  \ingroup edtransform
+ *
+ * \name 3D Transform Manipulator
+ *
+ * Used for 3D View
  */
 
-
 #include <stdlib.h>
 #include <string.h>
 #include <math.h>



More information about the Bf-blender-cvs mailing list