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:
authorCampbell Barton <ideasman42@gmail.com>2021-07-16 04:45:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-16 04:45:51 +0300
commit09b89da349fd08aea811cc770cf627fbda6d75ba (patch)
treeb2795b0bdbf3cb391b597800340000865bb3685f /source/blender/editors/interface/interface_handlers.c
parentd3c454d66c0a730eafa7edecec158ca3b9edb2d7 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/editors/interface/interface_handlers.c')
-rw-r--r--source/blender/editors/interface/interface_handlers.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c
index 858955271b2..4f8bb6342f7 100644
--- a/source/blender/editors/interface/interface_handlers.c
+++ b/source/blender/editors/interface/interface_handlers.c
@@ -770,7 +770,7 @@ static uiAfterFunc *ui_afterfunc_new(void)
* \param context_but: A button from which to get the context from (`uiBut.context`) for the
* operator execution.
*
- * \note Ownership over \a properties is moved here. The after-func owns it now.
+ * \note Ownership over \a properties is moved here. The #uiAfterFunc owns it now.
* \note Can only call while handling buttons.
*/
static void ui_handle_afterfunc_add_operator_ex(wmOperatorType *ot,
@@ -1157,7 +1157,7 @@ static void ui_apply_but_ROW(bContext *C, uiBlock *block, uiBut *but, uiHandleBu
}
/**
- * \note Ownership of \a properties is moved here. The after-func owns it now.
+ * \note Ownership of \a properties is moved here. The #uiAfterFunc owns it now.
*
* \param context_but: The button to use context from when calling or polling the operator.
*
@@ -9458,10 +9458,10 @@ static int ui_list_handle_click_drag(bContext *C,
activate = true;
}
}
- /* KM_CLICK is only sent after an uncaught release event, so the forground button gets all
+ /* #KM_CLICK is only sent after an uncaught release event, so the foreground button gets all
* regular events (including mouse presses to start dragging) and this part only kicks in if it
* hasn't handled the release event. Note that if there's no overlaid button, the row selects
- * on the press event already via regular UI_BTYPE_LISTROW handling. */
+ * on the press event already via regular #UI_BTYPE_LISTROW handling. */
else if ((event->type == LEFTMOUSE) && (event->val == KM_CLICK)) {
activate = true;
}