From c26a9eed929f3a06bc2721eafd5c716b9d8fe0be Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 9 Sep 2015 02:39:40 +1000 Subject: Error in last commit Had warnings disabled. --- source/blender/editors/transform/transform_orientations.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/transform/transform_orientations.c') diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c index c91666be8f6..a1bb6f4e0f3 100644 --- a/source/blender/editors/transform/transform_orientations.c +++ b/source/blender/editors/transform/transform_orientations.c @@ -394,7 +394,7 @@ int BIF_countTransformOrientation(const bContext *C) bool applyTransformOrientation(const bContext *C, float mat[3][3], char *r_name, int index) { ListBase *transform_spaces = &CTX_data_scene(C)->transform_spaces; - const TransformOrientation *ts = BLI_findlink(transform_spaces, index); + TransformOrientation *ts = BLI_findlink(transform_spaces, index); BLI_assert(index >= 0); @@ -1047,7 +1047,7 @@ int getTransformOrientation(const bContext *C, float normal[3], float plane[3]) /* dummy value, not V3D_ACTIVE and not V3D_LOCAL */ short around = V3D_CENTER; - getTransformOrientation_ex(C, normal, plane, around); + return getTransformOrientation_ex(C, normal, plane, around); } void ED_getTransformOrientationMatrix(const bContext *C, float orientation_mat[3][3], const short around) -- cgit v1.2.3