[Bf-blender-cvs] [05201c75e32] master: Cleanup: minor comments fixes.

Bastien Montagne noreply at git.blender.org
Wed Mar 27 20:48:04 CET 2019


Commit: 05201c75e32479e0675494de70f20b3839111063
Author: Bastien Montagne
Date:   Wed Mar 27 09:45:59 2019 +0100
Branches: master
https://developer.blender.org/rB05201c75e32479e0675494de70f20b3839111063

Cleanup: minor comments fixes.

===================================================================

M	source/blender/editors/object/object_data_transfer.c

===================================================================

diff --git a/source/blender/editors/object/object_data_transfer.c b/source/blender/editors/object/object_data_transfer.c
index 8ca0b9c3c91..3e32770c9a8 100644
--- a/source/blender/editors/object/object_data_transfer.c
+++ b/source/blender/editors/object/object_data_transfer.c
@@ -329,7 +329,7 @@ static bool data_transfer_exec_is_object_valid(
 		return true;
 	}
 	else if (!ID_IS_LINKED(me)) {
-		/* Do not transfer apply operation more than once. */
+		/* Do not apply transfer operation more than once. */
 		/* XXX This is not nice regarding vgroups, which are half-Object data... :/ */
 		BKE_reportf(op->reports, RPT_WARNING,
 		            "Skipping object '%s', data '%s' has already been processed with a previous object",
@@ -518,7 +518,7 @@ static bool data_transfer_poll_property(const bContext *UNUSED(C), wmOperator *o
 	return true;
 }
 
-/* transfers weight from active to selected */
+/* Transfer mesh data from active to selected objects. */
 void OBJECT_OT_data_transfer(wmOperatorType *ot)
 {
 	PropertyRNA *prop;



More information about the Bf-blender-cvs mailing list