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-07-13 11:51:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-13 11:51:49 +0300
commitf4213c1408619d1071004247ed099e2ba98a3e9a (patch)
tree70020befa07dc727b9feb65f198c77548c55806c /source/blender/editors/interface
parent252ebf6bfdb52d8d02adb46b8ba0712bd8392aa5 (diff)
Cleanup: id-property API use
Also clarify comments.
Diffstat (limited to 'source/blender/editors/interface')
-rw-r--r--source/blender/editors/interface/interface.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c
index e51822ac125..82ae4de07af 100644
--- a/source/blender/editors/interface/interface.c
+++ b/source/blender/editors/interface/interface.c
@@ -1004,14 +1004,12 @@ static bool ui_but_event_operator_string_from_menu(
BLI_assert(mt != NULL);
bool found = false;
- IDProperty *prop_menu, *prop_menu_name;
+ IDProperty *prop_menu;
/* annoying, create a property */
IDPropertyTemplate val = {0};
prop_menu = IDP_New(IDP_GROUP, &val, __func__); /* dummy, name is unimportant */
- IDP_AddToGroup(prop_menu, (prop_menu_name = IDP_NewString("", "name", sizeof(mt->idname))));
-
- IDP_AssignString(prop_menu_name, mt->idname, sizeof(mt->idname));
+ IDP_AddToGroup(prop_menu, IDP_NewString(mt->idname, "name", sizeof(mt->idname)));
if (WM_key_event_operator_string(
C, "WM_OT_call_menu", WM_OP_INVOKE_REGION_WIN, prop_menu, true,