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/gpencil/gpencil_edit.c
parent577bfb4e71f94942925eb936d41fb8f5af6385e9 (diff)
batch remove .'s used with RNA_def_struct_ui_text
Diffstat (limited to 'source/blender/editors/gpencil/gpencil_edit.c')
-rw-r--r--source/blender/editors/gpencil/gpencil_edit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/gpencil/gpencil_edit.c b/source/blender/editors/gpencil/gpencil_edit.c
index 8926f63ceaa..25bcddca88f 100644
--- a/source/blender/editors/gpencil/gpencil_edit.c
+++ b/source/blender/editors/gpencil/gpencil_edit.c
@@ -209,7 +209,7 @@ void GPENCIL_OT_data_add (wmOperatorType *ot)
/* identifiers */
ot->name= "Grease Pencil Add New";
ot->idname= "GPENCIL_OT_data_add";
- ot->description= "Add new Grease Pencil datablock.";
+ ot->description= "Add new Grease Pencil datablock";
/* callbacks */
ot->exec= gp_data_add_exec;
@@ -256,7 +256,7 @@ void GPENCIL_OT_data_unlink (wmOperatorType *ot)
/* identifiers */
ot->name= "Grease Pencil Unlink";
ot->idname= "GPENCIL_OT_data_unlink";
- ot->description= "Unlink active Grease Pencil datablock.";
+ ot->description= "Unlink active Grease Pencil datablock";
/* callbacks */
ot->exec= gp_data_unlink_exec;
@@ -292,7 +292,7 @@ void GPENCIL_OT_layer_add (wmOperatorType *ot)
/* identifiers */
ot->name= "Add New Layer";
ot->idname= "GPENCIL_OT_layer_add";
- ot->description= "Add new Grease Pencil layer for the active Grease Pencil datablock.";
+ ot->description= "Add new Grease Pencil layer for the active Grease Pencil datablock";
/* callbacks */
ot->exec= gp_layer_add_exec;
@@ -342,7 +342,7 @@ void GPENCIL_OT_active_frame_delete (wmOperatorType *ot)
/* identifiers */
ot->name= "Delete Active Frame";
ot->idname= "GPENCIL_OT_active_frame_delete";
- ot->description= "Delete the active frame for the active Grease Pencil datablock.";
+ ot->description= "Delete the active frame for the active Grease Pencil datablock";
/* callbacks */
ot->exec= gp_actframe_delete_exec;
@@ -583,7 +583,7 @@ void GPENCIL_OT_convert (wmOperatorType *ot)
/* identifiers */
ot->name= "Convert Grease Pencil";
ot->idname= "GPENCIL_OT_convert";
- ot->description= "Convert the active Grease Pencil layer to a new Object.";
+ ot->description= "Convert the active Grease Pencil layer to a new Object";
/* callbacks */
ot->invoke= WM_menu_invoke;