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/gpencil/gpencil_edit.c | 10 +++++----- source/blender/editors/gpencil/gpencil_paint.c | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/editors/gpencil') 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; diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c index 946ebbf9d67..5663c3bf31a 100644 --- a/source/blender/editors/gpencil/gpencil_paint.c +++ b/source/blender/editors/gpencil/gpencil_paint.c @@ -1510,7 +1510,7 @@ void GPENCIL_OT_draw (wmOperatorType *ot) /* identifiers */ ot->name= "Grease Pencil Draw"; ot->idname= "GPENCIL_OT_draw"; - ot->description= "Make annotations on the active data."; + ot->description= "Make annotations on the active data"; /* api callbacks */ ot->exec= gpencil_draw_exec; -- cgit v1.2.3