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-11-09 16:56:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-11-09 16:56:17 +0300
commit625349a6bd03f9af20a7f37814c8a91b02fa7d5c (patch)
tree52f3f25aa9ea2e067ba0768e0bbb0b39c4010b5f /source/blender/editors/armature
parent65bbac6692af373e943fceeb26f6db9fc45c10cb (diff)
Cleanup: spelling, C style comments
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/armature_relations.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/armature/armature_relations.c b/source/blender/editors/armature/armature_relations.c
index ac1c9418af9..cac6e9965b6 100644
--- a/source/blender/editors/armature/armature_relations.c
+++ b/source/blender/editors/armature/armature_relations.c
@@ -908,9 +908,9 @@ static int armature_parent_set_invoke(bContext *C,
wmOperator *UNUSED(op),
const wmEvent *UNUSED(event))
{
- // False when all selected bones are parented to the active bone.
+ /* False when all selected bones are parented to the active bone. */
bool enable_offset = false;
- // False when all selected bones are connected to the active bone.
+ /* False when all selected bones are connected to the active bone. */
bool enable_connect = false;
{
Object *ob = CTX_data_edit_object(C);
@@ -1033,9 +1033,9 @@ static int armature_parent_clear_invoke(bContext *C,
wmOperator *UNUSED(op),
const wmEvent *UNUSED(event))
{
- // False when no selected bones are connected to the active bone.
+ /* False when no selected bones are connected to the active bone. */
bool enable_disconnect = false;
- // False when no selected bones are parented to the active bone.
+ /* False when no selected bones are parented to the active bone. */
bool enable_clear = false;
{
Object *ob = CTX_data_edit_object(C);