[Bf-blender-cvs] [3ae7a0f0592] master: Cleanup: typo

Jacques Lucke noreply at git.blender.org
Fri Feb 19 12:31:55 CET 2021


Commit: 3ae7a0f0592c3011024826d66dae0c8f5d03eaa7
Author: Jacques Lucke
Date:   Fri Feb 19 12:31:27 2021 +0100
Branches: master
https://developer.blender.org/rB3ae7a0f0592c3011024826d66dae0c8f5d03eaa7

Cleanup: typo

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

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

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

diff --git a/source/blender/editors/space_node/node_draw.cc b/source/blender/editors/space_node/node_draw.cc
index 8248283b3b0..d0b62463ad9 100644
--- a/source/blender/editors/space_node/node_draw.cc
+++ b/source/blender/editors/space_node/node_draw.cc
@@ -1229,7 +1229,7 @@ static NodeWarningType node_error_highest_priority(Span<NodeWarning> warnings)
   return highest_priority_type;
 }
 
-static char *node_errrors_tooltip_fn(bContext *UNUSED(C), void *argN, const char *UNUSED(tip))
+static char *node_errors_tooltip_fn(bContext *UNUSED(C), void *argN, const char *UNUSED(tip))
 {
   const NodeUIStorage **storage_pointer_alloc = static_cast<const NodeUIStorage **>(argN);
   const NodeUIStorage *node_ui_storage = *storage_pointer_alloc;
@@ -1310,7 +1310,7 @@ static void node_add_error_message_button(
                             0,
                             0,
                             nullptr);
-  UI_but_func_tooltip_set(but, node_errrors_tooltip_fn, storage_pointer_alloc);
+  UI_but_func_tooltip_set(but, node_errors_tooltip_fn, storage_pointer_alloc);
   UI_block_emboss_set(node.block, UI_EMBOSS);
 }



More information about the Bf-blender-cvs mailing list