From 40223ffe699e3b9c112441c8c313960b4692db9d Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 23 Dec 2013 13:50:53 +0600 Subject: Rename evaluation_context to eval_ctx Only affects on variable name, structure name stays the same. Addresses code review from Campbell to make variable names which are being passed all over be short. Not entirely happy with this, but well ok. It's still verbose enough and naming kind of consistent to what Python uses. Discussed with Brecht and he's also fine with such a change. Hopefully this is last change to be done before merge :) --- source/blender/blenkernel/BKE_main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenkernel/BKE_main.h') diff --git a/source/blender/blenkernel/BKE_main.h b/source/blender/blenkernel/BKE_main.h index f58f019edb5..721866daff5 100644 --- a/source/blender/blenkernel/BKE_main.h +++ b/source/blender/blenkernel/BKE_main.h @@ -95,7 +95,7 @@ typedef struct Main { char id_tag_update[256]; /* Evaluation context used by viewport */ - struct EvaluationContext *evaluation_context; + struct EvaluationContext *eval_ctx; } Main; #define MAIN_VERSION_ATLEAST(main, ver, subver) \ -- cgit v1.2.3