Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-10-15 10:20:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-15 11:00:17 +0300
commitf1aa55b6e9cd8ec4d7eb7fead853a4436b35d4cd (patch)
treed7294d0bfe27070167d8b43fdb58a6a82e4421f8 /source/blender/python/intern/bpy_interface.c
parent5531697f6d4a27137dd91996ee80d452b7147a02 (diff)
Cleanup: rename BPy_GetContext -> BPY_context_get
Matching BPY_context_set.
Diffstat (limited to 'source/blender/python/intern/bpy_interface.c')
-rw-r--r--source/blender/python/intern/bpy_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c
index 468abd7b575..49a17bbf1bf 100644
--- a/source/blender/python/intern/bpy_interface.c
+++ b/source/blender/python/intern/bpy_interface.c
@@ -239,7 +239,7 @@ void BPY_modules_update(void)
BPY_update_rna_module();
}
-bContext *BPy_GetContext(void)
+bContext *BPY_context_get(void)
{
return bpy_context_module->ptr.data;
}