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>2010-02-11 00:15:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-11 00:15:44 +0300
commit148435b70a1ab15d7128a4ea61d22dea8ee5b1c9 (patch)
treece52babf94ef1678fb32632665e9dcf8c665cbb4 /source/blender/editors/animation/drivers.c
parent577bfb4e71f94942925eb936d41fb8f5af6385e9 (diff)
batch remove .'s used with RNA_def_struct_ui_text
Diffstat (limited to 'source/blender/editors/animation/drivers.c')
-rw-r--r--source/blender/editors/animation/drivers.c8
1 files changed, 4 insertions, 4 deletions
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;