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 13:52:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-13 13:52:10 +0300
commit4705682151b19fbaa5cccd85cbc8b0d00f743e30 (patch)
treef834bd02a30b3f4891cd77a8ab4ed282133718cd /source/blender/windowmanager/intern/wm_operators.c
parent2ead3f0765a15cce5367c4701539b6900299a97f (diff)
parentf6367ecfb65502a1ec40c5e382800b2ac214a499 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/windowmanager/intern/wm_operators.c')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 153cd080934..5cb95f2b3c5 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -123,26 +123,6 @@
#define UNDOCUMENTED_OPERATOR_TIP N_("(undocumented operator)")
/* ************ operator API, exported ********** */
-/**
- * Remove memory of all previously executed tools.
- */
-void WM_operatortype_last_properties_clear_all(void)
-{
- GHashIterator iter;
-
- for (WM_operatortype_iter(&iter);
- (!BLI_ghashIterator_done(&iter));
- (BLI_ghashIterator_step(&iter)))
- {
- wmOperatorType *ot = BLI_ghashIterator_getValue(&iter);
-
- if (ot->last_properties) {
- IDP_FreeProperty(ot->last_properties);
- MEM_freeN(ot->last_properties);
- ot->last_properties = NULL;
- }
- }
-}
/* SOME_OT_op -> some.op */
void WM_operator_py_idname(char *to, const char *from)