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:
authorJacques Lucke <jacques@blender.org>2021-02-19 14:31:27 +0300
committerJacques Lucke <jacques@blender.org>2021-02-19 14:31:38 +0300
commit3ae7a0f0592c3011024826d66dae0c8f5d03eaa7 (patch)
tree16950830adc7dd72f91910df132c51a530127ca1 /source/blender/editors
parente2caca1796088de03d66edfd7e8b5d2744df434d (diff)
Cleanup: typo
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_node/node_draw.cc4
1 files changed, 2 insertions, 2 deletions
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);
}