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>2018-10-29 04:49:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-29 04:49:47 +0300
commitd58cf8292c039a943efbecb5c5ac07ea160f3d0f (patch)
tree13392812cf5c090b393cb6d86f7dcb16444a678b /source/blender/makesrna/intern/rna_workspace_api.c
parentc750ebe113e70c6b7e9efad2219e12546519d44b (diff)
Cleanup: avoid C++ keyword in DNA
Diffstat (limited to 'source/blender/makesrna/intern/rna_workspace_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_workspace_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_workspace_api.c b/source/blender/makesrna/intern/rna_workspace_api.c
index 3f9c419d7e3..93da4a91738 100644
--- a/source/blender/makesrna/intern/rna_workspace_api.c
+++ b/source/blender/makesrna/intern/rna_workspace_api.c
@@ -64,7 +64,7 @@ static void rna_WorkspaceTool_setup(
STRNCPY(tref_rt.keymap, keymap);
STRNCPY(tref_rt.gizmo_group, gizmo_group);
STRNCPY(tref_rt.data_block, data_block);
- STRNCPY(tref_rt.operator, operator);
+ STRNCPY(tref_rt.op, operator);
tref_rt.index = index;
WM_toolsystem_ref_set_from_runtime(C, (WorkSpace *)id, tref, &tref_rt, name);