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:
authorHans Goudey <h.goudey@me.com>2022-03-31 04:55:40 +0300
committerHans Goudey <h.goudey@me.com>2022-03-31 04:55:40 +0300
commit41ee5382f655fe2e76c0527e43b239e15478b310 (patch)
tree49cee92dcec5de13cc6fc6a6cdf4c791bcc8bae7 /source/blender/editors/space_node
parent762d3a48e860d3425fc45bb0a7d4b86fb8cc836b (diff)
Cleanup: Remove unnecessary namespace specification
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/node_geometry_attribute_search.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_node/node_geometry_attribute_search.cc b/source/blender/editors/space_node/node_geometry_attribute_search.cc
index 4a0f3b9a1f2..680a3be1f49 100644
--- a/source/blender/editors/space_node/node_geometry_attribute_search.cc
+++ b/source/blender/editors/space_node/node_geometry_attribute_search.cc
@@ -60,9 +60,9 @@ static void attribute_search_update_fn(
if (node_log == nullptr) {
return;
}
- blender::Vector<const GeometryAttributeInfo *> infos = node_log->lookup_available_attributes();
+ Vector<const GeometryAttributeInfo *> infos = node_log->lookup_available_attributes();
- blender::ui::attribute_search_add_items(str, true, infos, items, is_first);
+ ui::attribute_search_add_items(str, true, infos, items, is_first);
}
static void attribute_search_exec_fn(bContext *C, void *data_v, void *item_v)