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:
authorJoshua Leung <aligorith@gmail.com>2018-08-21 05:54:18 +0300
committerJoshua Leung <aligorith@gmail.com>2018-08-21 07:52:10 +0300
commita7dcad2f8ff01490436ff2fd0e2aa671a1e2fa90 (patch)
treea7bf4a7879194f00983a3e9297f428ae3b1eb50b /source/blender/depsgraph/intern/depsgraph_query_iter.cc
parentb4d23818c81e5d1559f87e52b8a7b8247e8759a3 (diff)
Cleanup: Fix typos
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_query_iter.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_query_iter.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_query_iter.cc b/source/blender/depsgraph/intern/depsgraph_query_iter.cc
index a9492b48a1b..3331389a1db 100644
--- a/source/blender/depsgraph/intern/depsgraph_query_iter.cc
+++ b/source/blender/depsgraph/intern/depsgraph_query_iter.cc
@@ -83,7 +83,7 @@ void deg_invalidate_iterator_work_data(DEGObjectIterData *data)
#endif
}
-void verify_id_proeprties_freed(DEGObjectIterData *data)
+void verify_id_properties_freed(DEGObjectIterData *data)
{
if (data->dupli_object_current == NULL) {
// We didn't enter duplication yet, so we can't have any dangling
@@ -127,7 +127,7 @@ bool deg_objects_dupli_iterator_next(BLI_Iterator *iter)
continue;
}
- verify_id_proeprties_freed(data);
+ verify_id_properties_freed(data);
data->dupli_object_current = dob;
@@ -260,7 +260,7 @@ void DEG_iterator_objects_next(BLI_Iterator *iter)
return;
}
else {
- verify_id_proeprties_freed(data);
+ verify_id_properties_freed(data);
free_object_duplilist(data->dupli_list);
data->dupli_parent = NULL;
data->dupli_list = NULL;