From 148435b70a1ab15d7128a4ea61d22dea8ee5b1c9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 10 Feb 2010 21:15:44 +0000 Subject: batch remove .'s used with RNA_def_struct_ui_text --- source/blender/editors/animation/drivers.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/editors/animation/drivers.c') diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c index a993c4e238b..f8c41647121 100644 --- a/source/blender/editors/animation/drivers.c +++ b/source/blender/editors/animation/drivers.c @@ -415,7 +415,7 @@ void ANIM_OT_driver_button_add (wmOperatorType *ot) /* identifiers */ ot->name= "Add Driver"; ot->idname= "ANIM_OT_driver_button_add"; - ot->description= "Add driver(s) for the property(s) connected represented by the highlighted button."; + ot->description= "Add driver(s) for the property(s) connected represented by the highlighted button"; /* callbacks */ ot->exec= add_driver_button_exec; @@ -478,7 +478,7 @@ void ANIM_OT_driver_button_remove (wmOperatorType *ot) /* identifiers */ ot->name= "Remove Driver"; ot->idname= "ANIM_OT_driver_button_remove"; - ot->description= "Remove the driver(s) for the property(s) connected represented by the highlighted button."; + ot->description= "Remove the driver(s) for the property(s) connected represented by the highlighted button"; /* callbacks */ ot->exec= remove_driver_button_exec; @@ -525,7 +525,7 @@ void ANIM_OT_copy_driver_button (wmOperatorType *ot) /* identifiers */ ot->name= "Copy Driver"; ot->idname= "ANIM_OT_copy_driver_button"; - ot->description= "Copy the driver for the highlighted button."; + ot->description= "Copy the driver for the highlighted button"; /* callbacks */ ot->exec= copy_driver_button_exec; @@ -569,7 +569,7 @@ void ANIM_OT_paste_driver_button (wmOperatorType *ot) /* identifiers */ ot->name= "Paste Driver"; ot->idname= "ANIM_OT_paste_driver_button"; - ot->description= "Paste the driver in the copy/paste buffer for the highlighted button."; + ot->description= "Paste the driver in the copy/paste buffer for the highlighted button"; /* callbacks */ ot->exec= paste_driver_button_exec; -- cgit v1.2.3