[Bf-blender-cvs] [519e20f] master: Cleanup

Campbell Barton noreply at git.blender.org
Sat Apr 4 01:51:43 CEST 2015


Commit: 519e20f9849e13d697aaee6dcab747896f110312
Author: Campbell Barton
Date:   Sat Apr 4 10:48:17 2015 +1100
Branches: master
https://developer.blender.org/rB519e20f9849e13d697aaee6dcab747896f110312

Cleanup

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

M	source/blender/editors/animation/anim_channels_defines.c
M	source/blender/editors/space_action/action_data.c

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

diff --git a/source/blender/editors/animation/anim_channels_defines.c b/source/blender/editors/animation/anim_channels_defines.c
index 18ac5b0..ebd05d8 100644
--- a/source/blender/editors/animation/anim_channels_defines.c
+++ b/source/blender/editors/animation/anim_channels_defines.c
@@ -4206,7 +4206,7 @@ void ANIM_channel_draw_widgets(const bContext *C, bAnimContext *ac, bAnimListEle
 			UI_block_emboss_set(block, UI_EMBOSS);
 			
 			but = uiDefButR(block, UI_BTYPE_TEXT, 1, "", offset + 3, yminc, RENAME_TEXT_WIDTH, channel_height,
-							&ptr, RNA_property_identifier(prop), -1, 0, 0, -1, -1, NULL);
+			                &ptr, RNA_property_identifier(prop), -1, 0, 0, -1, -1, NULL);
 			
 			/* copy what outliner does here, see outliner_buttons */
 			if (UI_but_active_only(C, ac->ar, block, but) == false) {
diff --git a/source/blender/editors/space_action/action_data.c b/source/blender/editors/space_action/action_data.c
index e55da7d..a735817 100644
--- a/source/blender/editors/space_action/action_data.c
+++ b/source/blender/editors/space_action/action_data.c
@@ -23,7 +23,7 @@
  * ***** END GPL LICENSE BLOCK *****
  */
 
-/** \file blender/editors/space_action/action_edit.c
+/** \file blender/editors/space_action/action_data.c
  *  \ingroup spaction
  */
 
@@ -544,8 +544,8 @@ void ED_animedit_unlink_action(bContext *C, ID *id, AnimData *adt, bAction *act,
 	 */
 	if (act->id.us == 1) {
 		BKE_reportf(reports, RPT_ERROR,
-					"Action '%s' will not be saved, create Fake User or Stash in NLA Stack to retain",
-					act->id.name + 2);
+		            "Action '%s' will not be saved, create Fake User or Stash in NLA Stack to retain",
+		            act->id.name + 2);
 	}
 	
 	/* If in Tweak Mode, don't unlink. Instead, this




More information about the Bf-blender-cvs mailing list