[Bf-blender-cvs] [41ee5382f65] master: Cleanup: Remove unnecessary namespace specification

Hans Goudey noreply at git.blender.org
Thu Mar 31 03:55:47 CEST 2022


Commit: 41ee5382f655fe2e76c0527e43b239e15478b310
Author: Hans Goudey
Date:   Wed Mar 30 20:55:40 2022 -0500
Branches: master
https://developer.blender.org/rB41ee5382f655fe2e76c0527e43b239e15478b310

Cleanup: Remove unnecessary namespace specification

===================================================================

M	source/blender/editors/space_node/node_geometry_attribute_search.cc

===================================================================

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)



More information about the Bf-blender-cvs mailing list