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>2020-06-30 13:54:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-30 13:54:31 +0300
commitb838a518031b9fa83826933ce8e7f0a31d8d9b9d (patch)
tree53565d494136eef7d1be7b6f26520a2fbbd65ab3 /source/blender/editors/interface
parent84f8b47c4c44160de5f59cea9da82d70755209e5 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/interface')
-rw-r--r--source/blender/editors/interface/interface_panel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/interface/interface_panel.c b/source/blender/editors/interface/interface_panel.c
index 4bf88c76857..2eeab4efbc7 100644
--- a/source/blender/editors/interface/interface_panel.c
+++ b/source/blender/editors/interface/interface_panel.c
@@ -385,7 +385,7 @@ void UI_panels_free_instanced(bContext *C, ARegion *region)
MEM_freeN(panel->runtime.custom_data_ptr);
}
- /* Free the panel and its subpanels. */
+ /* Free the panel and its sub-panels. */
panel_delete(region, &region->panels, panel);
}
}
@@ -2916,7 +2916,7 @@ void UI_panel_custom_data_set(Panel *panel, PointerRNA *custom_data)
{
BLI_assert(panel->type != NULL);
- /* Free the old custom data, which should be shared among all of the panel's subpanels. */
+ /* Free the old custom data, which should be shared among all of the panel's sub-panels. */
if (panel->runtime.custom_data_ptr != NULL) {
MEM_freeN(panel->runtime.custom_data_ptr);
}