Spelling: Predefined, Look Up, No One
Fixes 18 misspellings of 'predefined', 'Look Up', 'Lookup', and 'No One'. Differential Revision: https://developer.blender.org/D9466 Reviewed by Hans Goudey
This commit is contained in:
@@ -578,7 +578,7 @@ void BKE_armature_transform(bArmature *arm, const float mat[4][4], const bool do
|
|||||||
/* -------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------- */
|
||||||
/** \name Armature Bone Find by Name
|
/** \name Armature Bone Find by Name
|
||||||
*
|
*
|
||||||
* Using fast #GHash look-ups when available.
|
* Using fast #GHash lookups when available.
|
||||||
* \{ */
|
* \{ */
|
||||||
|
|
||||||
static Bone *get_named_bone_bonechildren(ListBase *lb, const char *name)
|
static Bone *get_named_bone_bonechildren(ListBase *lb, const char *name)
|
||||||
|
@@ -48,7 +48,7 @@
|
|||||||
* - Small buffer optimization is enabled by default, if the key is not too large.
|
* - Small buffer optimization is enabled by default, if the key is not too large.
|
||||||
* - The methods `add_new` and `remove_contained` should be used instead of `add` and `remove`
|
* - The methods `add_new` and `remove_contained` should be used instead of `add` and `remove`
|
||||||
* whenever appropriate. Assumptions and intention are described better this way.
|
* whenever appropriate. Assumptions and intention are described better this way.
|
||||||
* - Look-ups can be performed using types other than Key without conversion. For that use the
|
* - Lookups can be performed using types other than Key without conversion. For that use the
|
||||||
* methods ending with `_as`. The template parameters Hash and #IsEqual have to support the other
|
* methods ending with `_as`. The template parameters Hash and #IsEqual have to support the other
|
||||||
* key type. This can greatly improve performance when the set contains strings.
|
* key type. This can greatly improve performance when the set contains strings.
|
||||||
* - The default constructor is cheap, even when a large #InlineBufferCapacity is used. A large
|
* - The default constructor is cheap, even when a large #InlineBufferCapacity is used. A large
|
||||||
|
@@ -1412,7 +1412,7 @@ static BChunkList *bchunk_list_from_data_merge(const BArrayInfo *info,
|
|||||||
*
|
*
|
||||||
* \param chunk_count: Number of elements to split each chunk into.
|
* \param chunk_count: Number of elements to split each chunk into.
|
||||||
* - A small value increases the ability to de-duplicate chunks,
|
* - A small value increases the ability to de-duplicate chunks,
|
||||||
* but adds overhead by increasing the number of chunks to look-up when searching for duplicates,
|
* but adds overhead by increasing the number of chunks to look up when searching for duplicates,
|
||||||
* as well as some overhead constructing the original array again, with more calls to ``memcpy``.
|
* as well as some overhead constructing the original array again, with more calls to ``memcpy``.
|
||||||
* - Larger values reduce the *book keeping* overhead,
|
* - Larger values reduce the *book keeping* overhead,
|
||||||
* but increase the chance a small,
|
* but increase the chance a small,
|
||||||
|
@@ -1605,7 +1605,7 @@ float BM_loop_calc_face_normal_safe_vcos_ex(const BMLoop *l,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* #BM_loop_calc_face_normal_safe_ex with pre-defined sane epsilon.
|
* #BM_loop_calc_face_normal_safe_ex with predefined sane epsilon.
|
||||||
*
|
*
|
||||||
* Since this doesn't scale based on triangle size, fixed value works well.
|
* Since this doesn't scale based on triangle size, fixed value works well.
|
||||||
*/
|
*/
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
*
|
*
|
||||||
* \name Generic Gizmos.
|
* \name Generic Gizmos.
|
||||||
*
|
*
|
||||||
* This is exposes pre-defined gizmos for re-use.
|
* This is exposes predefined gizmos for re-use.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@@ -429,8 +429,8 @@ static void menu_items_from_all_operators(bContext *C, struct MenuSearch_Data *d
|
|||||||
/**
|
/**
|
||||||
* Create #MenuSearch_Data by inspecting the current context, this uses two methods:
|
* Create #MenuSearch_Data by inspecting the current context, this uses two methods:
|
||||||
*
|
*
|
||||||
* - Look-up pre-defined editor-menus.
|
* - Look up predefined editor-menus.
|
||||||
* - Look-up key-map items which call menus.
|
* - Look up key-map items which call menus.
|
||||||
*/
|
*/
|
||||||
static struct MenuSearch_Data *menu_items_from_ui_create(
|
static struct MenuSearch_Data *menu_items_from_ui_create(
|
||||||
bContext *C, wmWindow *win, ScrArea *area_init, ARegion *region_init, bool include_all_areas)
|
bContext *C, wmWindow *win, ScrArea *area_init, ARegion *region_init, bool include_all_areas)
|
||||||
|
@@ -309,7 +309,7 @@ static void graphedit_activekey_left_handle_coord_cb(bContext *C, void *fcu_ptr,
|
|||||||
/* perform normal updates NOW */
|
/* perform normal updates NOW */
|
||||||
graphedit_activekey_handles_cb(C, fcu_ptr, bezt_ptr);
|
graphedit_activekey_handles_cb(C, fcu_ptr, bezt_ptr);
|
||||||
|
|
||||||
/* restore selection state so that no-one notices this hack */
|
/* restore selection state so that no one notices this hack */
|
||||||
bezt->f1 = f1;
|
bezt->f1 = f1;
|
||||||
bezt->f3 = f3;
|
bezt->f3 = f3;
|
||||||
}
|
}
|
||||||
@@ -331,7 +331,7 @@ static void graphedit_activekey_right_handle_coord_cb(bContext *C, void *fcu_ptr
|
|||||||
/* perform normal updates NOW */
|
/* perform normal updates NOW */
|
||||||
graphedit_activekey_handles_cb(C, fcu_ptr, bezt_ptr);
|
graphedit_activekey_handles_cb(C, fcu_ptr, bezt_ptr);
|
||||||
|
|
||||||
/* restore selection state so that no-one notices this hack */
|
/* restore selection state so that no one notices this hack */
|
||||||
bezt->f1 = f1;
|
bezt->f1 = f1;
|
||||||
bezt->f3 = f3;
|
bezt->f3 = f3;
|
||||||
}
|
}
|
||||||
|
@@ -453,7 +453,7 @@ void ED_gizmotypes_preselect_3d(void)
|
|||||||
/* -------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------- */
|
||||||
/** \name Gizmo Accessors
|
/** \name Gizmo Accessors
|
||||||
*
|
*
|
||||||
* This avoids each user of the gizmo needing to write their own look-ups to access
|
* This avoids each user of the gizmo needing to write their own lookups to access
|
||||||
* the information from this gizmo.
|
* the information from this gizmo.
|
||||||
* \{ */
|
* \{ */
|
||||||
|
|
||||||
|
@@ -1699,7 +1699,7 @@ bool DNA_sdna_patch_struct(SDNA *sdna, const char *struct_name_old, const char *
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Make public if called often with same struct (avoid duplicate look-ups). */
|
/* Make public if called often with same struct (avoid duplicate lookups). */
|
||||||
static bool DNA_sdna_patch_struct_member_nr(SDNA *sdna,
|
static bool DNA_sdna_patch_struct_member_nr(SDNA *sdna,
|
||||||
const int struct_name_nr,
|
const int struct_name_nr,
|
||||||
const char *elem_old,
|
const char *elem_old,
|
||||||
|
@@ -1310,7 +1310,7 @@ static void rna_def_ID_override_library_property_operation(BlenderRNA *brna)
|
|||||||
"MANDATORY",
|
"MANDATORY",
|
||||||
0,
|
0,
|
||||||
"Mandatory",
|
"Mandatory",
|
||||||
"For templates, prevents the user from removing pre-defined operation (NOT USED)"},
|
"For templates, prevents the user from removing predefined operation (NOT USED)"},
|
||||||
{IDOVERRIDE_LIBRARY_FLAG_LOCKED,
|
{IDOVERRIDE_LIBRARY_FLAG_LOCKED,
|
||||||
"LOCKED",
|
"LOCKED",
|
||||||
0,
|
0,
|
||||||
|
@@ -421,7 +421,7 @@ static PyStructSequence_Field app_translations_contexts_fields[ARRAY_SIZE(_conte
|
|||||||
|
|
||||||
static PyStructSequence_Desc app_translations_contexts_desc = {
|
static PyStructSequence_Desc app_translations_contexts_desc = {
|
||||||
"bpy.app.translations.contexts", /* name */
|
"bpy.app.translations.contexts", /* name */
|
||||||
"This named tuple contains all pre-defined translation contexts", /* doc */
|
"This named tuple contains all predefined translation contexts", /* doc */
|
||||||
app_translations_contexts_fields, /* fields */
|
app_translations_contexts_fields, /* fields */
|
||||||
ARRAY_SIZE(app_translations_contexts_fields) - 1,
|
ARRAY_SIZE(app_translations_contexts_fields) - 1,
|
||||||
};
|
};
|
||||||
@@ -464,7 +464,7 @@ static PyObject *app_translations_contexts_make(void)
|
|||||||
* \{ */
|
* \{ */
|
||||||
|
|
||||||
PyDoc_STRVAR(app_translations_contexts_doc,
|
PyDoc_STRVAR(app_translations_contexts_doc,
|
||||||
"A named tuple containing all pre-defined translation contexts.\n"
|
"A named tuple containing all predefined translation contexts.\n"
|
||||||
"\n"
|
"\n"
|
||||||
".. warning::\n"
|
".. warning::\n"
|
||||||
" Never use a (new) context starting with \"" BLT_I18NCONTEXT_DEFAULT_BPYRNA
|
" Never use a (new) context starting with \"" BLT_I18NCONTEXT_DEFAULT_BPYRNA
|
||||||
|
@@ -74,13 +74,13 @@ static PyStructSequence_Field bpyunits_categories_fields[ARRAY_SIZE(bpyunits_uca
|
|||||||
|
|
||||||
static PyStructSequence_Desc bpyunits_systems_desc = {
|
static PyStructSequence_Desc bpyunits_systems_desc = {
|
||||||
"bpy.utils.units.systems", /* name */
|
"bpy.utils.units.systems", /* name */
|
||||||
"This named tuple contains all pre-defined unit systems", /* doc */
|
"This named tuple contains all predefined unit systems", /* doc */
|
||||||
bpyunits_systems_fields, /* fields */
|
bpyunits_systems_fields, /* fields */
|
||||||
ARRAY_SIZE(bpyunits_systems_fields) - 1,
|
ARRAY_SIZE(bpyunits_systems_fields) - 1,
|
||||||
};
|
};
|
||||||
static PyStructSequence_Desc bpyunits_categories_desc = {
|
static PyStructSequence_Desc bpyunits_categories_desc = {
|
||||||
"bpy.utils.units.categories", /* name */
|
"bpy.utils.units.categories", /* name */
|
||||||
"This named tuple contains all pre-defined unit names", /* doc */
|
"This named tuple contains all predefined unit names", /* doc */
|
||||||
bpyunits_categories_fields, /* fields */
|
bpyunits_categories_fields, /* fields */
|
||||||
ARRAY_SIZE(bpyunits_categories_fields) - 1,
|
ARRAY_SIZE(bpyunits_categories_fields) - 1,
|
||||||
};
|
};
|
||||||
|
@@ -1810,7 +1810,7 @@ static void WM_OT_call_menu(wmOperatorType *ot)
|
|||||||
{
|
{
|
||||||
ot->name = "Call Menu";
|
ot->name = "Call Menu";
|
||||||
ot->idname = "WM_OT_call_menu";
|
ot->idname = "WM_OT_call_menu";
|
||||||
ot->description = "Call (draw) a pre-defined menu";
|
ot->description = "Call (draw) a predefined menu";
|
||||||
|
|
||||||
ot->exec = wm_call_menu_exec;
|
ot->exec = wm_call_menu_exec;
|
||||||
ot->poll = WM_operator_winactive;
|
ot->poll = WM_operator_winactive;
|
||||||
@@ -1841,7 +1841,7 @@ static void WM_OT_call_menu_pie(wmOperatorType *ot)
|
|||||||
{
|
{
|
||||||
ot->name = "Call Pie Menu";
|
ot->name = "Call Pie Menu";
|
||||||
ot->idname = "WM_OT_call_menu_pie";
|
ot->idname = "WM_OT_call_menu_pie";
|
||||||
ot->description = "Call (draw) a pre-defined pie menu";
|
ot->description = "Call (draw) a predefined pie menu";
|
||||||
|
|
||||||
ot->invoke = wm_call_pie_menu_invoke;
|
ot->invoke = wm_call_pie_menu_invoke;
|
||||||
ot->exec = wm_call_pie_menu_exec;
|
ot->exec = wm_call_pie_menu_exec;
|
||||||
@@ -1875,7 +1875,7 @@ static void WM_OT_call_panel(wmOperatorType *ot)
|
|||||||
{
|
{
|
||||||
ot->name = "Call Panel";
|
ot->name = "Call Panel";
|
||||||
ot->idname = "WM_OT_call_panel";
|
ot->idname = "WM_OT_call_panel";
|
||||||
ot->description = "Call (draw) a pre-defined panel";
|
ot->description = "Call (draw) a predefined panel";
|
||||||
|
|
||||||
ot->exec = wm_call_panel_exec;
|
ot->exec = wm_call_panel_exec;
|
||||||
ot->poll = WM_operator_winactive;
|
ot->poll = WM_operator_winactive;
|
||||||
|
Reference in New Issue
Block a user