Index: source/blender/editors/animation/anim_channels_edit.c =================================================================== --- source/blender/editors/animation/anim_channels_edit.c (revision 45069) +++ source/blender/editors/animation/anim_channels_edit.c (working copy) @@ -1106,7 +1106,7 @@ /* identifiers */ ot->name= "Move Channels"; ot->idname= "ANIM_OT_channels_move"; - ot->description = "Rearrange selected animation channels"; + ot->description= "Rearrange selected animation channels"; /* api callbacks */ ot->exec= animchannels_rearrange_exec; Index: source/blender/editors/animation/keyframing.c =================================================================== --- source/blender/editors/animation/keyframing.c (revision 45069) +++ source/blender/editors/animation/keyframing.c (working copy) @@ -1479,6 +1479,7 @@ /* identifiers */ ot->name= "Insert Keyframe (Buttons)"; ot->idname= "ANIM_OT_keyframe_insert_button"; + ot->description= ""; /* callbacks */ ot->exec= insert_key_button_exec; @@ -1551,6 +1552,7 @@ /* identifiers */ ot->name= "Delete Keyframe (Buttons)"; ot->idname= "ANIM_OT_keyframe_delete_button"; + ot->description= ""; /* callbacks */ ot->exec= delete_key_button_exec; Index: source/blender/editors/animation/keyingsets.c =================================================================== --- source/blender/editors/animation/keyingsets.c (revision 45069) +++ source/blender/editors/animation/keyingsets.c (working copy) @@ -373,6 +373,7 @@ /* identifiers */ ot->name= "Add to Keying Set"; ot->idname= "ANIM_OT_keyingset_button_add"; + ot->description= ""; /* callbacks */ ot->exec= add_keyingset_button_exec; @@ -452,6 +453,7 @@ /* identifiers */ ot->name= "Remove from Keying Set"; ot->idname= "ANIM_OT_keyingset_button_remove"; + ot->description= ""; /* callbacks */ ot->exec= remove_keyingset_button_exec; @@ -501,6 +503,7 @@ /* identifiers */ ot->name= "Set Active Keying Set"; ot->idname= "ANIM_OT_keying_set_active_set"; + ot->description= ""; /* callbacks */ ot->invoke= keyingset_active_menu_invoke; Index: source/blender/editors/armature/editarmature.c =================================================================== --- source/blender/editors/armature/editarmature.c (revision 45069) +++ source/blender/editors/armature/editarmature.c (working copy) @@ -4959,7 +4959,7 @@ /* identifiers */ ot->name= "Clear Pose Scale"; ot->idname= "POSE_OT_scale_clear"; - ot->description = "Reset scaling of selected bones to their default values"; + ot->description= "Reset scaling of selected bones to their default values"; /* api callbacks */ ot->exec = pose_clear_scale_exec; @@ -4980,7 +4980,7 @@ /* identifiers */ ot->name= "Clear Pose Rotation"; ot->idname= "POSE_OT_rot_clear"; - ot->description = "Reset rotations of selected bones to their default values"; + ot->description= "Reset rotations of selected bones to their default values"; /* api callbacks */ ot->exec = pose_clear_rot_exec; @@ -5001,7 +5001,7 @@ /* identifiers */ ot->name= "Clear Pose Location"; ot->idname= "POSE_OT_loc_clear"; - ot->description = "Reset locations of selected bones to their default values"; + ot->description= "Reset locations of selected bones to their default values"; /* api callbacks */ ot->exec = pose_clear_loc_exec; @@ -5022,7 +5022,7 @@ /* identifiers */ ot->name= "Clear Pose Transforms"; ot->idname= "POSE_OT_transforms_clear"; - ot->description = "Reset location, rotation, and scaling of selected bones to their default values"; + ot->description= "Reset location, rotation, and scaling of selected bones to their default values"; /* api callbacks */ ot->exec = pose_clear_transforms_exec; Index: source/blender/editors/armature/editarmature_sketch.c =================================================================== --- source/blender/editors/armature/editarmature_sketch.c (revision 45069) +++ source/blender/editors/armature/editarmature_sketch.c (working copy) @@ -2841,6 +2841,7 @@ /* identifiers */ ot->name= "Delete"; ot->idname= "SKETCH_OT_delete"; + ot->description= ""; /* api callbacks */ ot->invoke= sketch_delete; @@ -2856,6 +2857,7 @@ /* identifiers */ ot->name= "Select"; ot->idname= "SKETCH_OT_select"; + ot->description= ""; /* api callbacks */ ot->invoke= sketch_select; @@ -2871,6 +2873,7 @@ /* identifiers */ ot->name= "Cancel Stroke"; ot->idname= "SKETCH_OT_cancel_stroke"; + ot->description= ""; /* api callbacks */ ot->invoke= sketch_cancel; @@ -2886,6 +2889,7 @@ /* identifiers */ ot->name= "Convert"; ot->idname= "SKETCH_OT_convert"; + ot->description= ""; /* api callbacks */ ot->invoke= sketch_convert; @@ -2901,6 +2905,7 @@ /* identifiers */ ot->name= "End Stroke"; ot->idname= "SKETCH_OT_finish_stroke"; + ot->description= ""; /* api callbacks */ ot->invoke= sketch_finish; @@ -2916,6 +2921,7 @@ /* identifiers */ ot->name= "Draw Preview"; ot->idname= "SKETCH_OT_draw_preview"; + ot->description= ""; /* api callbacks */ ot->invoke= sketch_draw_preview; @@ -2933,6 +2939,7 @@ /* identifiers */ ot->name= "Draw Stroke"; ot->idname= "SKETCH_OT_draw_stroke"; + ot->description= ""; /* api callbacks */ ot->invoke = sketch_draw_stroke; @@ -2952,6 +2959,7 @@ /* identifiers */ ot->name= "Gesture"; ot->idname= "SKETCH_OT_gesture"; + ot->description= ""; /* api callbacks */ ot->invoke = sketch_draw_gesture; Index: source/blender/editors/armature/poselib.c =================================================================== --- source/blender/editors/armature/poselib.c (revision 45069) +++ source/blender/editors/armature/poselib.c (working copy) @@ -235,9 +235,9 @@ void POSELIB_OT_new (wmOperatorType *ot) { /* identifiers */ - ot->name = "New Pose Library"; - ot->idname = "POSELIB_OT_new"; - ot->description = "Add New Pose Library to active Object"; + ot->name= "New Pose Library"; + ot->idname= "POSELIB_OT_new"; + ot->description= "Add New Pose Library to active Object"; /* callbacks */ ot->exec = poselib_new_exec; @@ -270,9 +270,9 @@ void POSELIB_OT_unlink (wmOperatorType *ot) { /* identifiers */ - ot->name = "Unlink Pose Library"; - ot->idname = "POSELIB_OT_unlink"; - ot->description = "Remove Pose Library from active Object"; + ot->name= "Unlink Pose Library"; + ot->idname= "POSELIB_OT_unlink"; + ot->description= "Remove Pose Library from active Object"; /* callbacks */ ot->exec = poselib_unlink_exec; @@ -356,9 +356,9 @@ void POSELIB_OT_action_sanitise (wmOperatorType *ot) { /* identifiers */ - ot->name = "Sanitise Pose Library Action"; - ot->idname = "POSELIB_OT_action_sanitise"; - ot->description = "Make action suitable for use as a Pose Library"; + ot->name= "Sanitise Pose Library Action"; + ot->idname= "POSELIB_OT_action_sanitise"; + ot->description= "Make action suitable for use as a Pose Library"; /* callbacks */ ot->exec = poselib_sanitise_exec; @@ -1639,9 +1639,9 @@ void POSELIB_OT_apply_pose (wmOperatorType *ot) { /* identifiers */ - ot->name = "Apply Pose Library Pose"; - ot->idname = "POSELIB_OT_apply_pose"; - ot->description = "Apply specified Pose Library pose to the rig"; + ot->name= "Apply Pose Library Pose"; + ot->idname= "POSELIB_OT_apply_pose"; + ot->description= "Apply specified Pose Library pose to the rig"; /* callbacks */ ot->exec= poselib_preview_exec; Index: source/blender/editors/armature/poseobject.c =================================================================== --- source/blender/editors/armature/poseobject.c (revision 45069) +++ source/blender/editors/armature/poseobject.c (working copy) @@ -662,7 +662,7 @@ /* identifiers */ ot->name= "Select Grouped"; - ot->description = "Select all visible bones grouped by similar properties"; + ot->description= "Select all visible bones grouped by similar properties"; ot->idname= "POSE_OT_select_grouped"; /* api callbacks */ @@ -2191,7 +2191,7 @@ void POSE_OT_quaternions_flip (wmOperatorType *ot) { /* identifiers */ - ot->name = "Flip Quats"; + ot->name= "Flip Quats"; ot->idname= "POSE_OT_quaternions_flip"; ot->description= "Flip quaternion values to achieve desired rotations, while maintaining the same orientations"; @@ -2267,7 +2267,7 @@ void POSE_OT_user_transforms_clear (wmOperatorType *ot) { /* identifiers */ - ot->name = "Clear User Transforms"; + ot->name= "Clear User Transforms"; ot->idname= "POSE_OT_user_transforms_clear"; ot->description= "Reset pose on selected bones to keyframed state"; Index: source/blender/editors/curve/curve_ops.c =================================================================== --- source/blender/editors/curve/curve_ops.c (revision 45069) +++ source/blender/editors/curve/curve_ops.c (working copy) @@ -141,14 +141,14 @@ wmOperatorTypeMacro *otmacro; ot= WM_operatortype_append_macro("CURVE_OT_duplicate_move", "Add Duplicate", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Duplicate curve and move"; + ot->description= "Duplicate curve and move"; WM_operatortype_macro_define(ot, "CURVE_OT_duplicate"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_enum_set(otmacro->ptr, "proportional", 0); RNA_boolean_set(otmacro->ptr, "mirror", FALSE); ot= WM_operatortype_append_macro("CURVE_OT_extrude_move", "Extrude Curve and Move", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Extrude curve and move result"; + ot->description= "Extrude curve and move result"; WM_operatortype_macro_define(ot, "CURVE_OT_extrude"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_enum_set(otmacro->ptr, "proportional", 0); Index: source/blender/editors/curve/editcurve.c =================================================================== --- source/blender/editors/curve/editcurve.c (revision 45069) +++ source/blender/editors/curve/editcurve.c (working copy) @@ -1402,6 +1402,7 @@ /* identifiers */ ot->name= "Separate"; ot->idname= "CURVE_OT_separate"; + ot->description= ""; /* api callbacks */ ot->exec= separate_exec; @@ -2504,6 +2505,7 @@ /* identifiers */ ot->name= "(De)select First"; ot->idname= "CURVE_OT_de_select_first"; + ot->description= ""; /* api cfirstbacks */ ot->exec= de_select_first_exec; @@ -2528,6 +2530,7 @@ /* identifiers */ ot->name= "(De)select Last"; ot->idname= "CURVE_OT_de_select_last"; + ot->description= ""; /* api clastbacks */ ot->exec= de_select_last_exec; @@ -2606,6 +2609,7 @@ /* identifiers */ ot->name= "(De)select All"; ot->idname= "CURVE_OT_select_all"; + ot->description= ""; /* api callbacks */ ot->exec= de_select_all_exec; @@ -2680,6 +2684,7 @@ /* identifiers */ ot->name= "Hide Selected"; ot->idname= "CURVE_OT_hide"; + ot->description= ""; /* api callbacks */ ot->exec= hide_exec; @@ -2740,6 +2745,7 @@ /* identifiers */ ot->name= "Reveal Hidden"; ot->idname= "CURVE_OT_reveal"; + ot->description= ""; /* api callbacks */ ot->exec= reveal_exec; @@ -3503,7 +3509,7 @@ /* identifiers */ ot->name= "Set Spline Type"; - ot->description = "Set type of active spline"; + ot->description= "Set type of active spline"; ot->idname= "CURVE_OT_spline_type_set"; /* api callbacks */ @@ -3546,7 +3552,7 @@ /* identifiers */ ot->name= "Set Handle Type"; - ot->description = "Set type of handles for selected control points"; + ot->description= "Set type of handles for selected control points"; ot->idname= "CURVE_OT_handle_type_set"; /* api callbacks */ @@ -4082,6 +4088,7 @@ /* identifiers */ ot->name= "Make Segment"; ot->idname= "CURVE_OT_make_segment"; + ot->description= ""; /* api callbacks */ ot->exec= make_segment_exec; @@ -4312,6 +4319,7 @@ /* identifiers */ ot->name= "Spin"; ot->idname= "CURVE_OT_spin"; + ot->description= ""; /* api callbacks */ ot->exec= spin_exec; @@ -4621,6 +4629,7 @@ /* identifiers */ ot->name= "Add Vertex"; ot->idname= "CURVE_OT_vertex_add"; + ot->description= ""; /* api callbacks */ ot->exec= add_vertex_exec; @@ -4668,7 +4677,7 @@ { /* identifiers */ ot->name= "Extrude"; - ot->description = "Extrude selected control point(s) and move"; + ot->description= "Extrude selected control point(s) and move"; ot->idname= "CURVE_OT_extrude"; /* api callbacks */ @@ -4796,7 +4805,7 @@ /* identifiers */ ot->name= "Toggle Cyclic"; - ot->description = "Make active spline closed/opened loop"; + ot->description= "Make active spline closed/opened loop"; ot->idname= "CURVE_OT_cyclic_toggle"; /* api callbacks */ @@ -4874,6 +4883,7 @@ /* identifiers */ ot->name= "Select Linked All"; ot->idname= "CURVE_OT_select_linked"; + ot->description= ""; /* api callbacks */ ot->exec= select_linked_exec; @@ -4934,6 +4944,7 @@ /* identifiers */ ot->name= "Select Linked"; ot->idname= "CURVE_OT_select_linked_pick"; + ot->description= ""; /* api callbacks */ ot->invoke= select_linked_pick_invoke; @@ -5012,6 +5023,7 @@ /* identifiers */ ot->name= "Select Control Point Row"; ot->idname= "CURVE_OT_select_row"; + ot->description= ""; /* api callbacks */ ot->exec= select_row_exec; @@ -5039,6 +5051,7 @@ /* identifiers */ ot->name= "Select Next"; ot->idname= "CURVE_OT_select_next"; + ot->description= ""; /* api callbacks */ ot->exec= select_next_exec; @@ -5066,6 +5079,7 @@ /* identifiers */ ot->name= "Select Previous"; ot->idname= "CURVE_OT_select_previous"; + ot->description= ""; /* api callbacks */ ot->exec= select_previous_exec; @@ -5153,6 +5167,7 @@ /* identifiers */ ot->name= "Select More"; ot->idname= "CURVE_OT_select_more"; + ot->description= ""; /* api callbacks */ ot->exec= select_more_exec; @@ -5314,6 +5329,7 @@ /* identifiers */ ot->name= "Select Less"; ot->idname= "CURVE_OT_select_less"; + ot->description= ""; /* api callbacks */ ot->exec= select_less_exec; @@ -5377,6 +5393,7 @@ /* identifiers */ ot->name= "Select Random"; ot->idname= "CURVE_OT_select_random"; + ot->description= ""; /* api callbacks */ ot->exec= select_random_exec; @@ -5538,7 +5555,7 @@ { /* identifiers */ ot->name= "Duplicate Curve"; - ot->description = "Duplicate selected control points and segments between them"; + ot->description= "Duplicate selected control points and segments between them"; ot->idname= "CURVE_OT_duplicate"; /* api callbacks */ @@ -5913,7 +5930,7 @@ /* identifiers */ ot->name= "Delete"; - ot->description = "Delete selected control points or segments"; + ot->description= "Delete selected control points or segments"; ot->idname= "CURVE_OT_delete"; /* api callbacks */ @@ -5958,6 +5975,7 @@ /* identifiers */ ot->name= "Shade Smooth"; ot->idname= "CURVE_OT_shade_smooth"; + ot->description= ""; /* api callbacks */ ot->exec= shade_smooth_exec; @@ -5972,6 +5990,7 @@ /* identifiers */ ot->name= "Shade Flat"; ot->idname= "CURVE_OT_shade_flat"; + ot->description= ""; /* api callbacks */ ot->exec= shade_smooth_exec; @@ -6842,6 +6861,7 @@ /* identifiers */ ot->name= "Clear Tilt"; ot->idname= "CURVE_OT_tilt_clear"; + ot->description= ""; /* api callbacks */ ot->exec= clear_tilt_exec; Index: source/blender/editors/curve/editfont.c =================================================================== --- source/blender/editors/curve/editfont.c (revision 45069) +++ source/blender/editors/curve/editfont.c (working copy) @@ -1687,6 +1687,7 @@ /* identifiers */ ot->name= "Open Font"; ot->idname= "FONT_OT_open"; + ot->description= ""; /* api callbacks */ ot->exec= font_open_exec; Index: source/blender/editors/mesh/bmesh_select.c =================================================================== --- source/blender/editors/mesh/bmesh_select.c (revision 45069) +++ source/blender/editors/mesh/bmesh_select.c (working copy) @@ -870,14 +870,15 @@ PropertyRNA *prop; /* identifiers */ - ot->name = "Select Similar"; - ot->idname = "MESH_OT_select_similar"; + ot->name= "Select Similar"; + ot->idname= "MESH_OT_select_similar"; + ot->description= ""; /* api callbacks */ ot->invoke = WM_menu_invoke; ot->exec = select_similar_exec; ot->poll = ED_operator_editmesh; - ot->description = "Select similar vertices, edges or faces by property types"; + ot->description= "Select similar vertices, edges or faces by property types"; /* flags */ ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; @@ -972,13 +973,14 @@ void MESH_OT_loop_multi_select(wmOperatorType *ot) { /* identifiers */ - ot->name = "Multi Select Loops"; - ot->idname = "MESH_OT_loop_multi_select"; + ot->name= "Multi Select Loops"; + ot->idname= "MESH_OT_loop_multi_select"; + ot->description= ""; /* api callbacks */ ot->exec = loop_multiselect; ot->poll = ED_operator_editmesh; - ot->description = "Select a loop of connected edges by connection type"; + ot->description= "Select a loop of connected edges by connection type"; /* flags */ ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1077,14 +1079,14 @@ void MESH_OT_loop_select(wmOperatorType *ot) { /* identifiers */ - ot->name = "Loop Select"; - ot->idname = "MESH_OT_loop_select"; - ot->description = "Select a loop"; + ot->name= "Loop Select"; + ot->idname= "MESH_OT_loop_select"; + ot->description= "Select a loop"; /* api callbacks */ ot->invoke = mesh_select_loop_invoke; ot->poll = ED_operator_editmesh_region_view3d; - ot->description = "Select a loop of connected edges"; + ot->description= "Select a loop of connected edges"; /* flags */ ot->flag = OPTYPE_UNDO; @@ -1097,9 +1099,9 @@ void MESH_OT_edgering_select(wmOperatorType *ot) { /* description */ - ot->name = "Edge Ring Select"; - ot->idname = "MESH_OT_edgering_select"; - ot->description = "Select an edge ring"; + ot->name= "Edge Ring Select"; + ot->idname= "MESH_OT_edgering_select"; + ot->description= "Select an edge ring"; /* callbacks */ ot->invoke = mesh_select_loop_invoke; @@ -1430,13 +1432,14 @@ void MESH_OT_select_shortest_path(wmOperatorType *ot) { /* identifiers */ - ot->name = "Shortest Path Select"; - ot->idname = "MESH_OT_select_shortest_path"; + ot->name= "Shortest Path Select"; + ot->idname= "MESH_OT_select_shortest_path"; + ot->description= ""; /* api callbacks */ ot->invoke = mesh_shortest_path_select_invoke; ot->poll = ED_operator_editmesh; - ot->description = "Select shortest path between two selections"; + ot->description= "Select shortest path between two selections"; /* flags */ ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1834,13 +1837,14 @@ void MESH_OT_select_linked_pick(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Linked"; - ot->idname = "MESH_OT_select_linked_pick"; + ot->name= "Select Linked"; + ot->idname= "MESH_OT_select_linked_pick"; + ot->description= ""; /* api callbacks */ ot->invoke = select_linked_pick_invoke; ot->poll = ED_operator_editmesh; - ot->description = "(De)select all vertices linked to the edge under the mouse cursor"; + ot->description= "(De)select all vertices linked to the edge under the mouse cursor"; /* flags */ ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1929,13 +1933,14 @@ void MESH_OT_select_linked(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Linked All"; - ot->idname = "MESH_OT_select_linked"; + ot->name= "Select Linked All"; + ot->idname= "MESH_OT_select_linked"; + ot->description= ""; /* api callbacks */ ot->exec = select_linked_exec; ot->poll = ED_operator_editmesh; - ot->description = "Select all vertices linked to the active mesh"; + ot->description= "Select all vertices linked to the active mesh"; /* flags */ ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1959,9 +1964,9 @@ void MESH_OT_select_more(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select More"; - ot->idname = "MESH_OT_select_more"; - ot->description = "Select more vertices, edges or faces connected to initial selection"; + ot->name= "Select More"; + ot->idname= "MESH_OT_select_more"; + ot->description= "Select more vertices, edges or faces connected to initial selection"; /* api callbacks */ ot->exec = select_more; @@ -1985,9 +1990,9 @@ void MESH_OT_select_less(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Less"; - ot->idname = "MESH_OT_select_less"; - ot->description = "Deselect vertices, edges or faces at the boundary of each selection region"; + ot->name= "Select Less"; + ot->idname= "MESH_OT_select_less"; + ot->description= "Deselect vertices, edges or faces at the boundary of each selection region"; /* api callbacks */ ot->exec = select_less; @@ -2169,9 +2174,9 @@ void MESH_OT_select_nth(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Nth"; - ot->description = ""; - ot->idname = "MESH_OT_select_nth"; + ot->name= "Select Nth"; + ot->description= ""; + ot->idname= "MESH_OT_select_nth"; /* api callbacks */ ot->exec = mesh_select_nth_exec; @@ -2245,9 +2250,9 @@ void MESH_OT_edges_select_sharp(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Sharp Edges"; - ot->description = "Marked selected edges as sharp"; - ot->idname = "MESH_OT_edges_select_sharp"; + ot->name= "Select Sharp Edges"; + ot->description= "Marked selected edges as sharp"; + ot->idname= "MESH_OT_edges_select_sharp"; /* api callbacks */ ot->exec = select_sharp_edges_exec; @@ -2326,9 +2331,9 @@ void MESH_OT_faces_select_linked_flat(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Linked Flat Faces"; - ot->description = "Select linked faces by angle"; - ot->idname = "MESH_OT_faces_select_linked_flat"; + ot->name= "Select Linked Flat Faces"; + ot->description= "Select linked faces by angle"; + ot->idname= "MESH_OT_faces_select_linked_flat"; /* api callbacks */ ot->exec = select_linked_flat_faces_exec; @@ -2378,9 +2383,9 @@ void MESH_OT_select_non_manifold(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Non Manifold"; - ot->description = "Select all non-manifold vertices or edges"; - ot->idname = "MESH_OT_select_non_manifold"; + ot->name= "Select Non Manifold"; + ot->description= "Select all non-manifold vertices or edges"; + ot->idname= "MESH_OT_select_non_manifold"; /* api callbacks */ ot->exec = select_non_manifold_exec; @@ -2438,9 +2443,9 @@ void MESH_OT_select_random(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Random"; - ot->description = "Randomly select vertices"; - ot->idname = "MESH_OT_select_random"; + ot->name= "Select Random"; + ot->description= "Randomly select vertices"; + ot->idname= "MESH_OT_select_random"; /* api callbacks */ ot->exec = mesh_select_random_exec; @@ -2493,9 +2498,9 @@ void MESH_OT_select_next_loop(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Next Loop"; - ot->idname = "MESH_OT_select_next_loop"; - ot->description = ""; + ot->name= "Select Next Loop"; + ot->idname= "MESH_OT_select_next_loop"; + ot->description= ""; /* api callbacks */ ot->exec = select_next_loop; @@ -2561,8 +2566,9 @@ void MESH_OT_region_to_loop(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Boundary Loop"; - ot->idname = "MESH_OT_region_to_loop"; + ot->name= "Select Boundary Loop"; + ot->idname= "MESH_OT_region_to_loop"; + ot->description= ""; /* api callbacks */ ot->exec = region_to_loop; @@ -2742,8 +2748,9 @@ void MESH_OT_loop_to_region(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Loop Inner-Region"; - ot->idname = "MESH_OT_loop_to_region"; + ot->name= "Select Loop Inner-Region"; + ot->idname= "MESH_OT_loop_to_region"; + ot->description= ""; /* api callbacks */ ot->exec = loop_to_region; Index: source/blender/editors/mesh/bmesh_tools.c =================================================================== --- source/blender/editors/mesh/bmesh_tools.c (revision 45069) +++ source/blender/editors/mesh/bmesh_tools.c (working copy) @@ -123,9 +123,9 @@ PropertyRNA *prop; /* identifiers */ - ot->name = "Subdivide"; - ot->description = "Subdivide selected edges"; - ot->idname = "MESH_OT_subdivide"; + ot->name= "Subdivide"; + ot->description= "Subdivide selected edges"; + ot->idname= "MESH_OT_subdivide"; /* api callbacks */ ot->exec = subdivide_exec; @@ -412,9 +412,9 @@ void MESH_OT_extrude_repeat(wmOperatorType *ot) { /* identifiers */ - ot->name = "Extrude Repeat Mesh"; - ot->description = "Extrude selected vertices, edges or faces repeatedly"; - ot->idname = "MESH_OT_extrude_repeat"; + ot->name= "Extrude Repeat Mesh"; + ot->description= "Extrude selected vertices, edges or faces repeatedly"; + ot->idname= "MESH_OT_extrude_repeat"; /* api callbacks */ ot->exec = extrude_repeat_mesh; @@ -534,8 +534,9 @@ void MESH_OT_extrude_region(wmOperatorType *ot) { /* identifiers */ - ot->name = "Extrude Region"; - ot->idname = "MESH_OT_extrude_region"; + ot->name= "Extrude Region"; + ot->idname= "MESH_OT_extrude_region"; + ot->description= ""; /* api callbacks */ //ot->invoke = mesh_extrude_region_invoke; @@ -564,8 +565,9 @@ void MESH_OT_extrude_verts_indiv(wmOperatorType *ot) { /* identifiers */ - ot->name = "Extrude Only Vertices"; - ot->idname = "MESH_OT_extrude_verts_indiv"; + ot->name= "Extrude Only Vertices"; + ot->idname= "MESH_OT_extrude_verts_indiv"; + ot->description= ""; /* api callbacks */ ot->exec = mesh_extrude_verts_exec; @@ -594,8 +596,9 @@ void MESH_OT_extrude_edges_indiv(wmOperatorType *ot) { /* identifiers */ - ot->name = "Extrude Only Edges"; - ot->idname = "MESH_OT_extrude_edges_indiv"; + ot->name= "Extrude Only Edges"; + ot->idname= "MESH_OT_extrude_edges_indiv"; + ot->description= ""; /* api callbacks */ ot->exec = mesh_extrude_edges_exec; @@ -624,8 +627,9 @@ void MESH_OT_extrude_faces_indiv(wmOperatorType *ot) { /* identifiers */ - ot->name = "Extrude Individual Faces"; - ot->idname = "MESH_OT_extrude_faces_indiv"; + ot->name= "Extrude Individual Faces"; + ot->idname= "MESH_OT_extrude_faces_indiv"; + ot->description= ""; /* api callbacks */ ot->exec = mesh_extrude_faces_exec; @@ -676,9 +680,9 @@ void MESH_OT_select_all(wmOperatorType *ot) { /* identifiers */ - ot->name = "(De)select All"; - ot->idname = "MESH_OT_select_all"; - ot->description = "(De)select all vertices, edges or faces"; + ot->name= "(De)select All"; + ot->idname= "MESH_OT_select_all"; + ot->description= "(De)select all vertices, edges or faces"; /* api callbacks */ ot->exec = mesh_select_all_exec; @@ -709,9 +713,9 @@ void MESH_OT_select_interior_faces(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Interior Faces"; - ot->idname = "MESH_OT_select_interior_faces"; - ot->description = "Select faces where all edges have more than 2 face users"; + ot->name= "Select Interior Faces"; + ot->idname= "MESH_OT_select_interior_faces"; + ot->description= "Select faces where all edges have more than 2 face users"; /* api callbacks */ ot->exec = mesh_faces_select_interior_exec; @@ -895,12 +899,13 @@ void MESH_OT_dupli_extrude_cursor(wmOperatorType *ot) { /* identifiers */ - ot->name = "Duplicate or Extrude at 3D Cursor"; - ot->idname = "MESH_OT_dupli_extrude_cursor"; + ot->name= "Duplicate or Extrude at 3D Cursor"; + ot->idname= "MESH_OT_dupli_extrude_cursor"; + ot->description= ""; /* api callbacks */ ot->invoke = dupli_extrude_cursor; - ot->description = "Duplicate and extrude selected vertices, edges or faces towards the mouse cursor"; + ot->description= "Duplicate and extrude selected vertices, edges or faces towards the mouse cursor"; ot->poll = ED_operator_editmesh; /* flags */ @@ -1009,9 +1014,9 @@ void MESH_OT_delete(wmOperatorType *ot) { /* identifiers */ - ot->name = "Delete"; - ot->description = "Delete selected vertices, edges or faces"; - ot->idname = "MESH_OT_delete"; + ot->name= "Delete"; + ot->description= "Delete selected vertices, edges or faces"; + ot->idname= "MESH_OT_delete"; /* api callbacks */ ot->invoke = WM_menu_invoke; @@ -1056,9 +1061,9 @@ void MESH_OT_edge_face_add(wmOperatorType *ot) { /* identifiers */ - ot->name = "Make Edge/Face"; - ot->description = "Add an edge or face to selected"; - ot->idname = "MESH_OT_edge_face_add"; + ot->name= "Make Edge/Face"; + ot->description= "Add an edge or face to selected"; + ot->idname= "MESH_OT_edge_face_add"; /* api callbacks */ ot->exec = addedgeface_mesh_exec; @@ -1110,9 +1115,9 @@ void MESH_OT_mark_seam(wmOperatorType *ot) { /* identifiers */ - ot->name = "Mark Seam"; - ot->idname = "MESH_OT_mark_seam"; - ot->description = "(un)mark selected edges as a seam"; + ot->name= "Mark Seam"; + ot->idname= "MESH_OT_mark_seam"; + ot->description= "(un)mark selected edges as a seam"; /* api callbacks */ ot->exec = editbmesh_mark_seam; @@ -1166,9 +1171,9 @@ void MESH_OT_mark_sharp(wmOperatorType *ot) { /* identifiers */ - ot->name = "Mark Sharp"; - ot->idname = "MESH_OT_mark_sharp"; - ot->description = "(un)mark selected edges as sharp"; + ot->name= "Mark Sharp"; + ot->idname= "MESH_OT_mark_sharp"; + ot->description= "(un)mark selected edges as sharp"; /* api callbacks */ ot->exec = editbmesh_mark_sharp; @@ -1207,8 +1212,9 @@ void MESH_OT_vert_connect(wmOperatorType *ot) { /* identifiers */ - ot->name = "Vertex Connect"; - ot->idname = "MESH_OT_vert_connect"; + ot->name= "Vertex Connect"; + ot->idname= "MESH_OT_vert_connect"; + ot->description= ""; /* api callbacks */ ot->exec = editbmesh_vert_connect; @@ -1248,8 +1254,9 @@ PropertyRNA *prop; /* identifiers */ - ot->name = "Edge Split"; - ot->idname = "MESH_OT_edge_split"; + ot->name= "Edge Split"; + ot->idname= "MESH_OT_edge_split"; + ot->description= ""; /* api callbacks */ ot->exec = editbmesh_edge_split; @@ -1301,9 +1308,9 @@ void MESH_OT_duplicate(wmOperatorType *ot) { /* identifiers */ - ot->name = "Duplicate"; - ot->description = "Duplicate selected vertices, edges or faces"; - ot->idname = "MESH_OT_duplicate"; + ot->name= "Duplicate"; + ot->description= "Duplicate selected vertices, edges or faces"; + ot->idname= "MESH_OT_duplicate"; /* api callbacks */ ot->invoke = mesh_duplicate_invoke; @@ -1332,9 +1339,9 @@ void MESH_OT_flip_normals(wmOperatorType *ot) { /* identifiers */ - ot->name = "Flip Normals"; - ot->description = "Flip the direction of selected faces' normals (and of their vertices)"; - ot->idname = "MESH_OT_flip_normals"; + ot->name= "Flip Normals"; + ot->description= "Flip the direction of selected faces' normals (and of their vertices)"; + ot->idname= "MESH_OT_flip_normals"; /* api callbacks */ ot->exec = flip_normals; @@ -1413,9 +1420,9 @@ void MESH_OT_edge_rotate(wmOperatorType *ot) { /* identifiers */ - ot->name = "Rotate Selected Edge"; - ot->description = "Rotate selected edge or adjoining faces"; - ot->idname = "MESH_OT_edge_rotate"; + ot->name= "Rotate Selected Edge"; + ot->description= "Rotate selected edge or adjoining faces"; + ot->idname= "MESH_OT_edge_rotate"; /* api callbacks */ ot->exec = edge_rotate_selected; @@ -1477,13 +1484,14 @@ void MESH_OT_hide(wmOperatorType *ot) { /* identifiers */ - ot->name = "Hide Selection"; - ot->idname = "MESH_OT_hide"; + ot->name= "Hide Selection"; + ot->idname= "MESH_OT_hide"; + ot->description= ""; /* api callbacks */ ot->exec = hide_mesh_exec; ot->poll = ED_operator_editmesh; - ot->description = "Hide (un)selected vertices, edges or faces"; + ot->description= "Hide (un)selected vertices, edges or faces"; /* flags */ ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1551,9 +1559,9 @@ void MESH_OT_reveal(wmOperatorType *ot) { /* identifiers */ - ot->name = "Reveal Hidden"; - ot->idname = "MESH_OT_reveal"; - ot->description = "Reveal all hidden vertices, edges and faces"; + ot->name= "Reveal Hidden"; + ot->idname= "MESH_OT_reveal"; + ot->description= "Reveal all hidden vertices, edges and faces"; /* api callbacks */ ot->exec = reveal_mesh_exec; @@ -1585,9 +1593,9 @@ void MESH_OT_normals_make_consistent(wmOperatorType *ot) { /* identifiers */ - ot->name = "Make Normals Consistent"; - ot->description = "Make face and vertex normals point either outside or inside the mesh"; - ot->idname = "MESH_OT_normals_make_consistent"; + ot->name= "Make Normals Consistent"; + ot->description= "Make face and vertex normals point either outside or inside the mesh"; + ot->idname= "MESH_OT_normals_make_consistent"; /* api callbacks */ ot->exec = normals_make_consistent_exec; @@ -1663,9 +1671,9 @@ void MESH_OT_vertices_smooth(wmOperatorType *ot) { /* identifiers */ - ot->name = "Smooth Vertex"; - ot->description = "Flatten angles of selected vertices"; - ot->idname = "MESH_OT_vertices_smooth"; + ot->name= "Smooth Vertex"; + ot->description= "Flatten angles of selected vertices"; + ot->idname= "MESH_OT_vertices_smooth"; /* api callbacks */ ot->exec = do_smooth_vertex; @@ -1739,8 +1747,9 @@ void MESH_OT_bm_test(wmOperatorType *ot) { /* identifiers */ - ot->name = "BMesh Test Operator"; - ot->idname = "MESH_OT_bm_test"; + ot->name= "BMesh Test Operator"; + ot->idname= "MESH_OT_bm_test"; + ot->description= ""; /* api callbacks */ ot->exec = bm_test_exec; @@ -1784,9 +1793,9 @@ void MESH_OT_faces_shade_smooth(wmOperatorType *ot) { /* identifiers */ - ot->name = "Shade Smooth"; - ot->description = "Display faces smooth (using vertex normals)"; - ot->idname = "MESH_OT_faces_shade_smooth"; + ot->name= "Shade Smooth"; + ot->description= "Display faces smooth (using vertex normals)"; + ot->idname= "MESH_OT_faces_shade_smooth"; /* api callbacks */ ot->exec = mesh_faces_shade_smooth_exec; @@ -1812,9 +1821,9 @@ void MESH_OT_faces_shade_flat(wmOperatorType *ot) { /* identifiers */ - ot->name = "Shade Flat"; - ot->description = "Display faces flat"; - ot->idname = "MESH_OT_faces_shade_flat"; + ot->name= "Shade Flat"; + ot->description= "Display faces flat"; + ot->idname= "MESH_OT_faces_shade_flat"; /* api callbacks */ ot->exec = mesh_faces_shade_flat_exec; @@ -1938,8 +1947,9 @@ void MESH_OT_uvs_rotate(wmOperatorType *ot) { /* identifiers */ - ot->name = "Rotate UVs"; - ot->idname = "MESH_OT_uvs_rotate"; + ot->name= "Rotate UVs"; + ot->idname= "MESH_OT_uvs_rotate"; + ot->description= ""; /* api callbacks */ ot->exec = mesh_rotate_uvs; @@ -1956,8 +1966,9 @@ void MESH_OT_uvs_reverse(wmOperatorType *ot) { /* identifiers */ - ot->name = "Reverse UVs"; - ot->idname = "MESH_OT_uvs_reverse"; + ot->name= "Reverse UVs"; + ot->idname= "MESH_OT_uvs_reverse"; + ot->description= ""; /* api callbacks */ ot->exec = mesh_reverse_uvs; @@ -1973,8 +1984,9 @@ void MESH_OT_colors_rotate(wmOperatorType *ot) { /* identifiers */ - ot->name = "Rotate Colors"; - ot->idname = "MESH_OT_colors_rotate"; + ot->name= "Rotate Colors"; + ot->idname= "MESH_OT_colors_rotate"; + ot->description= ""; /* api callbacks */ ot->exec = mesh_rotate_colors; @@ -1990,8 +2002,9 @@ void MESH_OT_colors_reverse(wmOperatorType *ot) { /* identifiers */ - ot->name = "Reverse Colors"; - ot->idname = "MESH_OT_colors_reverse"; + ot->name= "Reverse Colors"; + ot->idname= "MESH_OT_colors_reverse"; + ot->description= ""; /* api callbacks */ ot->exec = mesh_reverse_colors; @@ -2169,8 +2182,9 @@ void MESH_OT_merge(wmOperatorType *ot) { /* identifiers */ - ot->name = "Merge"; - ot->idname = "MESH_OT_merge"; + ot->name= "Merge"; + ot->idname= "MESH_OT_merge"; + ot->description= ""; /* api callbacks */ ot->exec = merge_exec; @@ -2220,8 +2234,9 @@ void MESH_OT_remove_doubles(wmOperatorType *ot) { /* identifiers */ - ot->name = "Remove Doubles"; - ot->idname = "MESH_OT_remove_doubles"; + ot->name= "Remove Doubles"; + ot->idname= "MESH_OT_remove_doubles"; + ot->description= ""; /* api callbacks */ ot->exec = removedoublesflag_exec; @@ -2310,8 +2325,9 @@ {0, NULL, 0, NULL, NULL}}; /* identifiers */ - ot->name = "Select Vertex Path"; - ot->idname = "MESH_OT_select_vertex_path"; + ot->name= "Select Vertex Path"; + ot->idname= "MESH_OT_select_vertex_path"; + ot->description= ""; /* api callbacks */ ot->exec = select_vertex_path_exec; @@ -2575,8 +2591,9 @@ void MESH_OT_rip(wmOperatorType *ot) { /* identifiers */ - ot->name = "Rip"; - ot->idname = "MESH_OT_rip"; + ot->name= "Rip"; + ot->idname= "MESH_OT_rip"; + ot->description= ""; /* api callbacks */ ot->invoke = mesh_rip_invoke; @@ -2646,9 +2663,9 @@ void MESH_OT_shape_propagate_to_all(wmOperatorType *ot) { /* identifiers */ - ot->name = "Shape Propagate"; - ot->description = "Apply selected vertex locations to all other shape keys"; - ot->idname = "MESH_OT_shape_propagate_to_all"; + ot->name= "Shape Propagate"; + ot->description= "Apply selected vertex locations to all other shape keys"; + ot->idname= "MESH_OT_shape_propagate_to_all"; /* api callbacks */ ot->exec = shape_propagate_to_all_exec; @@ -2741,9 +2758,9 @@ static EnumPropertyItem shape_items[] = {{0, NULL, 0, NULL, NULL}}; /* identifiers */ - ot->name = "Blend From Shape"; - ot->description = "Blend in shape from a shape key"; - ot->idname = "MESH_OT_blend_from_shape"; + ot->name= "Blend From Shape"; + ot->description= "Blend in shape from a shape key"; + ot->idname= "MESH_OT_blend_from_shape"; /* api callbacks */ ot->exec = blend_from_shape_exec; @@ -2825,9 +2842,9 @@ {0, NULL, 0, NULL, NULL}}; /* identifiers */ - ot->name = "Select Axis"; - ot->description = "Select all data in the mesh on a single axis"; - ot->idname = "MESH_OT_select_axis"; + ot->name= "Select Axis"; + ot->description= "Select all data in the mesh on a single axis"; + ot->idname= "MESH_OT_select_axis"; /* api callbacks */ ot->exec = select_axis_exec; @@ -2881,9 +2898,9 @@ { PropertyRNA *prop; /* identifiers */ - ot->name = "Solidify"; - ot->description = "Create a solid skin by extruding, compensating for sharp angles"; - ot->idname = "MESH_OT_solidify"; + ot->name= "Solidify"; + ot->description= "Create a solid skin by extruding, compensating for sharp angles"; + ot->idname= "MESH_OT_solidify"; /* api callbacks */ ot->exec = solidify_exec; @@ -3204,9 +3221,9 @@ { PropertyRNA *prop; - ot->name = "Knife Cut"; - ot->description = "Cut selected edges and faces into parts"; - ot->idname = "MESH_OT_knife_cut"; + ot->name= "Knife Cut"; + ot->description= "Cut selected edges and faces into parts"; + ot->idname= "MESH_OT_knife_cut"; ot->invoke = WM_gesture_lines_invoke; ot->modal = WM_gesture_lines_modal; @@ -3406,9 +3423,9 @@ void MESH_OT_separate(wmOperatorType *ot) { /* identifiers */ - ot->name = "Separate"; - ot->description = "Separate selected geometry into a new mesh"; - ot->idname = "MESH_OT_separate"; + ot->name= "Separate"; + ot->description= "Separate selected geometry into a new mesh"; + ot->idname= "MESH_OT_separate"; /* api callbacks */ ot->invoke = WM_menu_invoke; @@ -3451,8 +3468,9 @@ void MESH_OT_fill(wmOperatorType *ot) { /* identifiers */ - ot->name = "Fill"; - ot->idname = "MESH_OT_fill"; + ot->name= "Fill"; + ot->idname= "MESH_OT_fill"; + ot->description= ""; /* api callbacks */ ot->exec = fill_mesh_exec; @@ -3479,8 +3497,9 @@ void MESH_OT_beautify_fill(wmOperatorType *ot) { /* identifiers */ - ot->name = "Beautify Fill"; - ot->idname = "MESH_OT_beautify_fill"; + ot->name= "Beautify Fill"; + ot->idname= "MESH_OT_beautify_fill"; + ot->description= ""; /* api callbacks */ ot->exec = beautify_fill_exec; @@ -3510,8 +3529,9 @@ void MESH_OT_quads_convert_to_tris(wmOperatorType *ot) { /* identifiers */ - ot->name = "Quads to Tris"; - ot->idname = "MESH_OT_quads_convert_to_tris"; + ot->name= "Quads to Tris"; + ot->idname= "MESH_OT_quads_convert_to_tris"; + ot->description= ""; /* api callbacks */ ot->exec = quads_convert_to_tris_exec; @@ -3553,8 +3573,9 @@ PropertyRNA *prop; /* identifiers */ - ot->name = "Tris to Quads"; - ot->idname = "MESH_OT_tris_convert_to_quads"; + ot->name= "Tris to Quads"; + ot->idname= "MESH_OT_tris_convert_to_quads"; + ot->description= ""; /* api callbacks */ ot->exec = tris_convert_to_quads_exec; @@ -3597,9 +3618,9 @@ PropertyRNA *prop; /* identifiers */ - ot->name = "Limited Dissolve"; - ot->idname = "MESH_OT_dissolve_limited"; - ot->description = "Dissolve selected edges and verts, limited by the angle of surrounding geometry"; + ot->name= "Limited Dissolve"; + ot->idname= "MESH_OT_dissolve_limited"; + ot->description= "Dissolve selected edges and verts, limited by the angle of surrounding geometry"; /* api callbacks */ ot->exec = dissolve_limited_exec; @@ -3640,8 +3661,9 @@ void MESH_OT_split(wmOperatorType *ot) { /* identifiers */ - ot->name = "Split"; - ot->idname = "MESH_OT_split"; + ot->name= "Split"; + ot->idname= "MESH_OT_split"; + ot->description= ""; /* api callbacks */ ot->exec = split_mesh_exec; @@ -3712,8 +3734,9 @@ void MESH_OT_spin(wmOperatorType *ot) { /* identifiers */ - ot->name = "Spin"; - ot->idname = "MESH_OT_spin"; + ot->name= "Spin"; + ot->idname= "MESH_OT_spin"; + ot->description= ""; /* api callbacks */ ot->invoke = spin_mesh_invoke; @@ -3838,8 +3861,9 @@ void MESH_OT_screw(wmOperatorType *ot) { /* identifiers */ - ot->name = "Screw"; - ot->idname = "MESH_OT_screw"; + ot->name= "Screw"; + ot->idname= "MESH_OT_screw"; + ot->description= ""; /* api callbacks */ ot->invoke = screw_mesh_invoke; @@ -3905,9 +3929,9 @@ }; /* identifiers */ - ot->name = "Select by Number of Vertices"; - ot->description = "Select vertices or faces by vertex count"; - ot->idname = "MESH_OT_select_by_number_vertices"; + ot->name= "Select by Number of Vertices"; + ot->description= "Select vertices or faces by vertex count"; + ot->idname= "MESH_OT_select_by_number_vertices"; /* api callbacks */ ot->exec = select_by_number_vertices_exec; @@ -3954,9 +3978,9 @@ void MESH_OT_select_loose_verts(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Loose Vertices/Edges"; - ot->description = "Select vertices with no edges nor faces, and edges with no faces"; - ot->idname = "MESH_OT_select_loose_verts"; + ot->name= "Select Loose Vertices/Edges"; + ot->description= "Select vertices with no edges nor faces, and edges with no faces"; + ot->idname= "MESH_OT_select_loose_verts"; /* api callbacks */ ot->exec = select_loose_verts_exec; @@ -3982,9 +4006,9 @@ void MESH_OT_select_mirror(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Mirror"; - ot->description = "Select mesh items at mirrored locations"; - ot->idname = "MESH_OT_select_mirror"; + ot->name= "Select Mirror"; + ot->description= "Select mesh items at mirrored locations"; + ot->idname= "MESH_OT_select_mirror"; /* api callbacks */ ot->exec = select_mirror_exec; @@ -4099,9 +4123,9 @@ void MESH_OT_vertices_sort(wmOperatorType *ot) { /* identifiers */ - ot->name = "Vertex Sort"; - ot->description = "Sort vertex order"; - ot->idname = "MESH_OT_vertices_sort"; + ot->name= "Vertex Sort"; + ot->description= "Sort vertex order"; + ot->idname= "MESH_OT_vertices_sort"; /* api callbacks */ ot->exec = mesh_vertices_sort_exec; @@ -4278,9 +4302,9 @@ { 0, NULL, 0, NULL, NULL }}; /* identifiers */ - ot->name = "Sort Faces"; // XXX (Ctrl to reverse)%t| - ot->description = "The faces of the active Mesh Object are sorted, based on the current view"; - ot->idname = "MESH_OT_sort_faces"; + ot->name= "Sort Faces"; // XXX (Ctrl to reverse)%t| + ot->description= "The faces of the active Mesh Object are sorted, based on the current view"; + ot->idname= "MESH_OT_sort_faces"; /* api callbacks */ ot->invoke = WM_menu_invoke; @@ -4369,9 +4393,9 @@ void MESH_OT_vertices_randomize(wmOperatorType *ot) { /* identifiers */ - ot->name = "Vertex Randomize"; - ot->description = "Randomize vertex order"; - ot->idname = "MESH_OT_vertices_randomize"; + ot->name= "Vertex Randomize"; + ot->description= "Randomize vertex order"; + ot->idname= "MESH_OT_vertices_randomize"; /* api callbacks */ ot->exec = mesh_vertices_randomize_exec; @@ -4442,9 +4466,9 @@ void MESH_OT_noise(wmOperatorType *ot) { /* identifiers */ - ot->name = "Noise"; - ot->description = "Use vertex coordinate as texture coordinate"; - ot->idname = "MESH_OT_noise"; + ot->name= "Noise"; + ot->description= "Use vertex coordinate as texture coordinate"; + ot->idname= "MESH_OT_noise"; /* api callbacks */ ot->exec = mesh_noise_exec; @@ -4531,9 +4555,9 @@ void MESH_OT_bevel(wmOperatorType *ot) { /* identifiers */ - ot->name = "Bevel"; - ot->description = "Edge/Vertex Bevel"; - ot->idname = "MESH_OT_bevel"; + ot->name= "Bevel"; + ot->description= "Edge/Vertex Bevel"; + ot->idname= "MESH_OT_bevel"; /* api callbacks */ ot->exec = mesh_bevel_exec; @@ -4567,9 +4591,9 @@ void MESH_OT_bridge_edge_loops(wmOperatorType *ot) { /* identifiers */ - ot->name = "Bridge edge loops"; - ot->description = "Make faces between two edge loops"; - ot->idname = "MESH_OT_bridge_edge_loops"; + ot->name= "Bridge edge loops"; + ot->description= "Make faces between two edge loops"; + ot->idname= "MESH_OT_bridge_edge_loops"; /* api callbacks */ ot->exec = bridge_edge_loops; @@ -4621,13 +4645,14 @@ PropertyRNA *prop; /* identifiers */ - ot->name = "Inset Faces"; - ot->idname = "MESH_OT_inset"; + ot->name= "Inset Faces"; + ot->idname= "MESH_OT_inset"; + ot->description= ""; /* api callbacks */ ot->exec = mesh_inset_exec; ot->poll = ED_operator_editmesh; - ot->description = ""; + ot->description= ""; /* flags */ ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; Index: source/blender/editors/mesh/knifetool.c =================================================================== --- source/blender/editors/mesh/knifetool.c (revision 45069) +++ source/blender/editors/mesh/knifetool.c (working copy) @@ -2948,9 +2948,9 @@ void MESH_OT_knifetool(wmOperatorType *ot) { /* description */ - ot->name = "Knife Topology Tool"; - ot->idname = "MESH_OT_knifetool"; - ot->description = "Cut new topology"; + ot->name= "Knife Topology Tool"; + ot->idname= "MESH_OT_knifetool"; + ot->description= "Cut new topology"; /* callbacks */ ot->invoke = knifetool_invoke; Index: source/blender/editors/mesh/mesh_ops.c =================================================================== --- source/blender/editors/mesh/mesh_ops.c (revision 45069) +++ source/blender/editors/mesh/mesh_ops.c (working copy) @@ -190,48 +190,48 @@ wmOperatorTypeMacro *otmacro; ot= WM_operatortype_append_macro("MESH_OT_loopcut_slide", "Loop Cut and Slide", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Cut mesh loop and slide it"; + ot->description= "Cut mesh loop and slide it"; WM_operatortype_macro_define(ot, "MESH_OT_loopcut"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_edge_slide"); RNA_struct_idprops_unset(otmacro->ptr, "release_confirm"); ot= WM_operatortype_append_macro("MESH_OT_duplicate_move", "Add Duplicate", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Duplicate mesh and move"; + ot->description= "Duplicate mesh and move"; WM_operatortype_macro_define(ot, "MESH_OT_duplicate"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_enum_set(otmacro->ptr, "proportional", 0); RNA_boolean_set(otmacro->ptr, "mirror", FALSE); ot= WM_operatortype_append_macro("MESH_OT_rip_move", "Rip", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Rip polygons and move the result"; + ot->description= "Rip polygons and move the result"; WM_operatortype_macro_define(ot, "MESH_OT_rip"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_enum_set(otmacro->ptr, "proportional", 0); RNA_boolean_set(otmacro->ptr, "mirror", FALSE); ot= WM_operatortype_append_macro("MESH_OT_extrude_region_move", "Extrude Region and Move", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Extrude region and move result"; + ot->description= "Extrude region and move result"; otmacro= WM_operatortype_macro_define(ot, "MESH_OT_extrude_region"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_enum_set(otmacro->ptr, "proportional", 0); RNA_boolean_set(otmacro->ptr, "mirror", FALSE); ot= WM_operatortype_append_macro("MESH_OT_extrude_faces_move", "Extrude Individual Faces and Move", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Extrude faces and move result"; + ot->description= "Extrude faces and move result"; otmacro= WM_operatortype_macro_define(ot, "MESH_OT_extrude_faces_indiv"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_shrink_fatten"); RNA_enum_set(otmacro->ptr, "proportional", 0); RNA_boolean_set(otmacro->ptr, "mirror", FALSE); ot= WM_operatortype_append_macro("MESH_OT_extrude_edges_move", "Extrude Only Edges and Move", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Extrude edges and move result"; + ot->description= "Extrude edges and move result"; otmacro= WM_operatortype_macro_define(ot, "MESH_OT_extrude_edges_indiv"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_enum_set(otmacro->ptr, "proportional", 0); RNA_boolean_set(otmacro->ptr, "mirror", FALSE); ot= WM_operatortype_append_macro("MESH_OT_extrude_vertices_move", "Extrude Only Vertices and Move", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Extrude vertices and move result"; + ot->description= "Extrude vertices and move result"; otmacro= WM_operatortype_macro_define(ot, "MESH_OT_extrude_verts_indiv"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_enum_set(otmacro->ptr, "proportional", 0); Index: source/blender/editors/object/object_add.c =================================================================== --- source/blender/editors/object/object_add.c (revision 45069) +++ source/blender/editors/object/object_add.c (working copy) @@ -366,7 +366,7 @@ { /* identifiers */ ot->name= "Add Object"; - ot->description = "Add an object to the scene"; + ot->description= "Add an object to the scene"; ot->idname= "OBJECT_OT_add"; /* api callbacks */ @@ -458,7 +458,7 @@ { /* identifiers */ ot->name= "Add Effector"; - ot->description = "Add an empty object with a physics effector to the scene"; + ot->description= "Add an empty object with a physics effector to the scene"; ot->idname= "OBJECT_OT_effector_add"; /* api callbacks */ @@ -513,7 +513,7 @@ /* identifiers */ ot->name= "Add Camera"; - ot->description = "Add a camera object to the scene"; + ot->description= "Add a camera object to the scene"; ot->idname= "OBJECT_OT_camera_add"; /* api callbacks */ @@ -631,7 +631,7 @@ { /* identifiers */ ot->name= "Add Text"; - ot->description = "Add a text object to the scene"; + ot->description= "Add a text object to the scene"; ot->idname= "OBJECT_OT_text_add"; /* api callbacks */ @@ -686,7 +686,7 @@ { /* identifiers */ ot->name= "Add Armature"; - ot->description = "Add an armature object to the scene"; + ot->description= "Add an armature object to the scene"; ot->idname= "OBJECT_OT_armature_add"; /* api callbacks */ @@ -753,7 +753,7 @@ /* identifiers */ ot->name= "Add Lamp"; - ot->description = "Add a lamp object to the scene"; + ot->description= "Add a lamp object to the scene"; ot->idname= "OBJECT_OT_lamp_add"; /* api callbacks */ @@ -844,7 +844,7 @@ { /* identifiers */ ot->name= "Add Speaker"; - ot->description = "Add a speaker object to the scene"; + ot->description= "Add a speaker object to the scene"; ot->idname= "OBJECT_OT_speaker_add"; /* api callbacks */ @@ -864,7 +864,7 @@ /* identifiers */ ot->name= "Add Group Instance"; - ot->description = "Add a dupligroup instance"; + ot->description= "Add a dupligroup instance"; ot->idname= "OBJECT_OT_group_instance_add"; /* api callbacks */ @@ -947,7 +947,7 @@ { /* identifiers */ ot->name= "Delete"; - ot->description = "Delete selected objects"; + ot->description= "Delete selected objects"; ot->idname= "OBJECT_OT_delete"; /* api callbacks */ @@ -1210,7 +1210,7 @@ /* identifiers */ ot->name= "Make Duplicates Real"; - ot->description = "Make dupli objects attached to this object real"; + ot->description= "Make dupli objects attached to this object real"; ot->idname= "OBJECT_OT_duplicates_make_real"; /* api callbacks */ @@ -1581,7 +1581,7 @@ { /* identifiers */ ot->name= "Convert to"; - ot->description = "Convert selected objects to another type"; + ot->description= "Convert selected objects to another type"; ot->idname= "OBJECT_OT_convert"; /* api callbacks */ @@ -1911,7 +1911,7 @@ /* identifiers */ ot->name= "Duplicate Objects"; - ot->description = "Duplicate selected objects"; + ot->description= "Duplicate selected objects"; ot->idname= "OBJECT_OT_duplicate"; /* api callbacks */ @@ -1982,7 +1982,7 @@ { /* identifiers */ ot->name= "Add Named Object"; - ot->description = "Add named object"; + ot->description= "Add named object"; ot->idname= "OBJECT_OT_add_named"; /* api callbacks */ @@ -2040,7 +2040,7 @@ { /* identifiers */ ot->name= "Join"; - ot->description = "Join selected objects into active object"; + ot->description= "Join selected objects into active object"; ot->idname= "OBJECT_OT_join"; /* api callbacks */ @@ -2089,7 +2089,7 @@ { /* identifiers */ ot->name= "Join as Shapes"; - ot->description = "Merge selected objects to shapes of active object"; + ot->description= "Merge selected objects to shapes of active object"; ot->idname= "OBJECT_OT_join_shapes"; /* api callbacks */ Index: source/blender/editors/object/object_constraint.c =================================================================== --- source/blender/editors/object/object_constraint.c (revision 45069) +++ source/blender/editors/object/object_constraint.c (working copy) @@ -1172,7 +1172,7 @@ void POSE_OT_constraints_clear(wmOperatorType *ot) { /* identifiers */ - ot->name = "Clear Pose Constraints"; + ot->name= "Clear Pose Constraints"; ot->idname= "POSE_OT_constraints_clear"; ot->description= "Clear all the constraints for the selected bones"; @@ -1207,7 +1207,7 @@ void OBJECT_OT_constraints_clear(wmOperatorType *ot) { /* identifiers */ - ot->name = "Clear Object Constraints"; + ot->name= "Clear Object Constraints"; ot->idname= "OBJECT_OT_constraints_clear"; ot->description= "Clear all the constraints for the active Object only"; @@ -1255,7 +1255,7 @@ /* identifiers */ ot->name= "Copy Constraints to Selected"; ot->idname= "POSE_OT_constraints_copy"; - ot->description = "Copy constraints to other selected bones"; + ot->description= "Copy constraints to other selected bones"; /* api callbacks */ ot->exec= pose_constraint_copy_exec; @@ -1296,7 +1296,7 @@ /* identifiers */ ot->name= "Copy Constraints to Selected"; ot->idname= "OBJECT_OT_constraints_copy"; - ot->description = "Copy constraints to other selected objects"; + ot->description= "Copy constraints to other selected objects"; /* api callbacks */ ot->exec= object_constraint_copy_exec; @@ -1610,7 +1610,7 @@ { /* identifiers */ ot->name= "Add Constraint"; - ot->description = "Add a constraint to the active object"; + ot->description= "Add a constraint to the active object"; ot->idname= "OBJECT_OT_constraint_add"; /* api callbacks */ @@ -1629,7 +1629,7 @@ { /* identifiers */ ot->name= "Add Constraint (with Targets)"; - ot->description = "Add a constraint to the active object, with target (where applicable) set to the selected Objects/Bones"; + ot->description= "Add a constraint to the active object, with target (where applicable) set to the selected Objects/Bones"; ot->idname= "OBJECT_OT_constraint_add_with_targets"; /* api callbacks */ @@ -1648,7 +1648,7 @@ { /* identifiers */ ot->name= "Add Constraint"; - ot->description = "Add a constraint to the active bone"; + ot->description= "Add a constraint to the active bone"; ot->idname= "POSE_OT_constraint_add"; /* api callbacks */ @@ -1667,7 +1667,7 @@ { /* identifiers */ ot->name= "Add Constraint (with Targets)"; - ot->description = "Add a constraint to the active bone, with target (where applicable) set to the selected Objects/Bones"; + ot->description= "Add a constraint to the active bone, with target (where applicable) set to the selected Objects/Bones"; ot->idname= "POSE_OT_constraint_add_with_targets"; /* api callbacks */ Index: source/blender/editors/object/object_edit.c =================================================================== --- source/blender/editors/object/object_edit.c (revision 45069) +++ source/blender/editors/object/object_edit.c (working copy) @@ -162,7 +162,7 @@ /* identifiers */ ot->name= "Clear Restrict View"; - ot->description = "Reveal the object by setting the hide flag"; + ot->description= "Reveal the object by setting the hide flag"; ot->idname= "OBJECT_OT_hide_view_clear"; /* api callbacks */ @@ -216,7 +216,7 @@ { /* identifiers */ ot->name= "Set Restrict View"; - ot->description = "Hide the object by setting the hide flag"; + ot->description= "Hide the object by setting the hide flag"; ot->idname= "OBJECT_OT_hide_view_set"; /* api callbacks */ @@ -255,7 +255,7 @@ /* identifiers */ ot->name= "Clear Restrict Render"; - ot->description = "Reveal the render object by setting the hide render flag"; + ot->description= "Reveal the render object by setting the hide render flag"; ot->idname= "OBJECT_OT_hide_render_clear"; /* api callbacks */ @@ -291,7 +291,7 @@ { /* identifiers */ ot->name= "Set Restrict Render"; - ot->description = "Hide the render object by setting the hide render flag"; + ot->description= "Hide the render object by setting the hide render flag"; ot->idname= "OBJECT_OT_hide_render_set"; /* api callbacks */ @@ -548,7 +548,7 @@ /* identifiers */ ot->name= "Toggle Editmode"; - ot->description = "Toggle object's editmode"; + ot->description= "Toggle object's editmode"; ot->idname= "OBJECT_OT_editmode_toggle"; /* api callbacks */ @@ -1072,7 +1072,7 @@ /* identifiers */ ot->name= "Toggle Force Field"; - ot->description = "Toggle object's force field"; + ot->description= "Toggle object's force field"; ot->idname= "OBJECT_OT_forcefield_toggle"; /* api callbacks */ @@ -1451,7 +1451,7 @@ /* identifiers */ ot->name= "Set Object Mode"; - ot->description = "Sets the object interaction mode"; + ot->description= "Sets the object interaction mode"; ot->idname= "OBJECT_OT_mode_set"; /* api callbacks */ @@ -1649,6 +1649,7 @@ /* identifiers */ ot->name= "Copy Game Property"; ot->idname= "OBJECT_OT_game_property_copy"; + ot->description= ""; /* api callbacks */ ot->exec= game_property_copy_exec; @@ -1678,6 +1679,7 @@ /* identifiers */ ot->name= "Clear Game Property"; ot->idname= "OBJECT_OT_game_property_clear"; + ot->description= ""; /* api callbacks */ ot->exec= game_property_clear_exec; @@ -1734,7 +1736,7 @@ { /* identifiers */ ot->name= "Copy Logic Bricks to Selected"; - ot->description = "Copy logic bricks to other selected objects"; + ot->description= "Copy logic bricks to other selected objects"; ot->idname= "OBJECT_OT_logic_bricks_copy"; /* api callbacks */ @@ -1782,7 +1784,7 @@ { /* identifiers */ ot->name= "Copy Game Physics Properties to Selected"; - ot->description = "Copy game physics properties to other selected objects"; + ot->description= "Copy game physics properties to other selected objects"; ot->idname= "OBJECT_OT_game_physics_copy"; /* api callbacks */ Index: source/blender/editors/object/object_group.c =================================================================== --- source/blender/editors/object/object_group.c (revision 45069) +++ source/blender/editors/object/object_group.c (working copy) @@ -95,7 +95,7 @@ { /* identifiers */ ot->name= "Add Selected To Active Group"; - ot->description = "Add the object to an object group that contains the active object"; + ot->description= "Add the object to an object group that contains the active object"; ot->idname= "GROUP_OT_objects_add_active"; /* api callbacks */ @@ -142,7 +142,7 @@ { /* identifiers */ ot->name= "Remove Selected From Active Group"; - ot->description = "Remove the object from an object group that contains the active object"; + ot->description= "Remove the object from an object group that contains the active object"; ot->idname= "GROUP_OT_objects_remove_active"; /* api callbacks */ @@ -176,7 +176,7 @@ { /* identifiers */ ot->name= "Remove From Groups"; - ot->description = "Remove selected objects from all groups"; + ot->description= "Remove selected objects from all groups"; ot->idname= "GROUP_OT_objects_remove"; /* api callbacks */ @@ -213,7 +213,7 @@ { /* identifiers */ ot->name= "Create New Group"; - ot->description = "Create an object group from selected objects"; + ot->description= "Create an object group from selected objects"; ot->idname= "GROUP_OT_create"; /* api callbacks */ @@ -250,7 +250,7 @@ /* identifiers */ ot->name= "Add to Group"; ot->idname= "OBJECT_OT_group_add"; - ot->description = "Add an object to a new group"; + ot->description= "Add an object to a new group"; /* api callbacks */ ot->exec= group_add_exec; @@ -282,7 +282,7 @@ /* identifiers */ ot->name= "Link to Group"; ot->idname= "OBJECT_OT_group_link"; - ot->description = "Add an object to an existing group"; + ot->description= "Add an object to an existing group"; /* api callbacks */ ot->exec= group_link_exec; @@ -318,6 +318,7 @@ /* identifiers */ ot->name= "Remove Group"; ot->idname= "OBJECT_OT_group_remove"; + ot->description= ""; /* api callbacks */ ot->exec= group_remove_exec; Index: source/blender/editors/object/object_modifier.c =================================================================== --- source/blender/editors/object/object_modifier.c (revision 45069) +++ source/blender/editors/object/object_modifier.c (working copy) @@ -688,7 +688,7 @@ /* identifiers */ ot->name= "Add Modifier"; - ot->description = "Add a modifier to the active object"; + ot->description= "Add a modifier to the active object"; ot->idname= "OBJECT_OT_modifier_add"; /* api callbacks */ @@ -1392,7 +1392,7 @@ { /* identifiers */ ot->name= "Mesh Deform Bind"; - ot->description = "Bind mesh to cage in mesh deform modifier"; + ot->description= "Bind mesh to cage in mesh deform modifier"; ot->idname= "OBJECT_OT_meshdeform_bind"; /* api callbacks */ Index: source/blender/editors/object/object_ops.c =================================================================== --- source/blender/editors/object/object_ops.c (revision 45069) +++ source/blender/editors/object/object_ops.c (working copy) @@ -223,7 +223,7 @@ ot= WM_operatortype_append_macro("OBJECT_OT_duplicate_move", "Duplicate Objects", OPTYPE_UNDO|OPTYPE_REGISTER); if(ot) { - ot->description = "Duplicate selected objects and move them"; + ot->description= "Duplicate selected objects and move them"; WM_operatortype_macro_define(ot, "OBJECT_OT_duplicate"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_enum_set(otmacro->ptr, "proportional", PROP_EDIT_OFF); @@ -232,7 +232,7 @@ /* grr, should be able to pass options on... */ ot= WM_operatortype_append_macro("OBJECT_OT_duplicate_move_linked", "Duplicate Linked", OPTYPE_UNDO|OPTYPE_REGISTER); if(ot) { - ot->description = "Duplicate selected objects and move them"; + ot->description= "Duplicate selected objects and move them"; otmacro= WM_operatortype_macro_define(ot, "OBJECT_OT_duplicate"); RNA_boolean_set(otmacro->ptr, "linked", TRUE); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); @@ -242,7 +242,7 @@ /* XXX */ ot= WM_operatortype_append_macro("OBJECT_OT_add_named_cursor", "Add named object at cursor", OPTYPE_UNDO|OPTYPE_REGISTER); if(ot) { - ot->description = "Add named object at cursor"; + ot->description= "Add named object at cursor"; RNA_def_string(ot->srna, "name", "Cube", MAX_ID_NAME-2, "Name", "Object name to add"); WM_operatortype_macro_define(ot, "VIEW3D_OT_cursor3d"); Index: source/blender/editors/object/object_relations.c =================================================================== --- source/blender/editors/object/object_relations.c (revision 45069) +++ source/blender/editors/object/object_relations.c (working copy) @@ -261,7 +261,7 @@ { /* identifiers */ ot->name= "Make Vertex Parent"; - ot->description = "Parent selected objects to the selected vertices"; + ot->description= "Parent selected objects to the selected vertices"; ot->idname= "OBJECT_OT_vertex_parent_set"; /* api callbacks */ @@ -465,7 +465,7 @@ { /* identifiers */ ot->name= "Clear Parent"; - ot->description = "Clear the object's parenting"; + ot->description= "Clear the object's parenting"; ot->idname= "OBJECT_OT_parent_clear"; /* api callbacks */ @@ -731,7 +731,7 @@ { /* identifiers */ ot->name= "Make Parent"; - ot->description = "Set the object's parenting"; + ot->description= "Set the object's parenting"; ot->idname= "OBJECT_OT_parent_set"; /* api callbacks */ @@ -788,7 +788,7 @@ { /* identifiers */ ot->name= "Make Parent without Inverse"; - ot->description = "Set the object's parenting without setting the inverse parent correction"; + ot->description= "Set the object's parenting without setting the inverse parent correction"; ot->idname= "OBJECT_OT_parent_no_inverse_set"; /* api callbacks */ @@ -830,7 +830,7 @@ /* identifiers */ ot->name= "Clear Slow Parent"; - ot->description = "Clear the object's slow parent"; + ot->description= "Clear the object's slow parent"; ot->idname= "OBJECT_OT_slow_parent_clear"; /* api callbacks */ @@ -869,7 +869,7 @@ /* identifiers */ ot->name= "Set Slow Parent"; - ot->description = "Set the object's slow parent"; + ot->description= "Set the object's slow parent"; ot->idname= "OBJECT_OT_slow_parent_set"; /* api callbacks */ @@ -930,7 +930,7 @@ { /* identifiers */ ot->name= "Clear track"; - ot->description = "Clear tracking constraint or flag from object"; + ot->description= "Clear tracking constraint or flag from object"; ot->idname= "OBJECT_OT_track_clear"; /* api callbacks */ @@ -1035,7 +1035,7 @@ { /* identifiers */ ot->name= "Make Track"; - ot->description = "Make the object track another object, either by constraint or old way or locked track"; + ot->description= "Make the object track another object, either by constraint or old way or locked track"; ot->idname= "OBJECT_OT_track_set"; /* api callbacks */ @@ -1146,7 +1146,7 @@ { /* identifiers */ ot->name= "Move to Layer"; - ot->description = "Move the object to different layers"; + ot->description= "Move the object to different layers"; ot->idname= "OBJECT_OT_move_to_layer"; /* api callbacks */ @@ -1324,7 +1324,7 @@ /* identifiers */ ot->name= "Link Objects to Scene"; - ot->description = "Link selection to another scene"; + ot->description= "Link selection to another scene"; ot->idname= "OBJECT_OT_make_links_scene"; /* api callbacks */ @@ -1353,7 +1353,7 @@ /* identifiers */ ot->name= "Link Data"; - ot->description = "Make links from the active object to other selected objects"; + ot->description= "Make links from the active object to other selected objects"; ot->idname= "OBJECT_OT_make_links_data"; /* api callbacks */ @@ -1813,7 +1813,7 @@ /* identifiers */ ot->name= "Make Local"; - ot->description = "Make library linked datablocks local to this file"; + ot->description= "Make library linked datablocks local to this file"; ot->idname= "OBJECT_OT_make_local"; /* api callbacks */ @@ -1866,7 +1866,7 @@ /* identifiers */ ot->name= "Make Single User"; - ot->description = "Make linked data local to each object"; + ot->description= "Make linked data local to each object"; ot->idname= "OBJECT_OT_make_single_user"; /* api callbacks */ @@ -1914,7 +1914,7 @@ /* identifiers */ ot->name= "Drop Named Material on Object"; - ot->description = ""; + ot->description= ""; ot->idname= "OBJECT_OT_drop_named_material"; /* api callbacks */ Index: source/blender/editors/object/object_select.c =================================================================== --- source/blender/editors/object/object_select.c (revision 45069) +++ source/blender/editors/object/object_select.c (working copy) @@ -166,7 +166,7 @@ { /* identifiers */ ot->name= "Select By Type"; - ot->description = "Select all visible objects that are of a type"; + ot->description= "Select all visible objects that are of a type"; ot->idname= "OBJECT_OT_select_by_type"; /* api callbacks */ @@ -348,7 +348,7 @@ { /* identifiers */ ot->name= "Select Linked"; - ot->description = "Select all visible objects that are linked"; + ot->description= "Select all visible objects that are linked"; ot->idname= "OBJECT_OT_select_linked"; /* api callbacks */ @@ -674,7 +674,7 @@ { /* identifiers */ ot->name= "Select Grouped"; - ot->description = "Select all visible objects grouped by various properties"; + ot->description= "Select all visible objects grouped by various properties"; ot->idname= "OBJECT_OT_select_grouped"; /* api callbacks */ @@ -723,7 +723,7 @@ { /* identifiers */ ot->name= "Select by Layer"; - ot->description = "Select all visible objects on a layer"; + ot->description= "Select all visible objects on a layer"; ot->idname= "OBJECT_OT_select_by_layer"; /* api callbacks */ @@ -788,7 +788,7 @@ /* identifiers */ ot->name= "(De)select All"; - ot->description = "Change selection of all visible objects in scene"; + ot->description= "Change selection of all visible objects in scene"; ot->idname= "OBJECT_OT_select_all"; /* api callbacks */ @@ -837,7 +837,7 @@ /* identifiers */ ot->name= "Select Same Group"; - ot->description = "Select object in the same group"; + ot->description= "Select object in the same group"; ot->idname= "OBJECT_OT_select_same_group"; /* api callbacks */ @@ -890,7 +890,7 @@ /* identifiers */ ot->name= "Select Mirror"; - ot->description = "Select the Mirror objects of the selected object eg. L.sword -> R.sword"; + ot->description= "Select the Mirror objects of the selected object eg. L.sword -> R.sword"; ot->idname= "OBJECT_OT_select_mirror"; /* api callbacks */ @@ -937,7 +937,7 @@ { /* identifiers */ ot->name= "Select Random"; - ot->description = "Set select on random visible objects"; + ot->description= "Set select on random visible objects"; ot->idname= "OBJECT_OT_select_random"; /* api callbacks */ Index: source/blender/editors/object/object_shapekey.c =================================================================== --- source/blender/editors/object/object_shapekey.c (revision 45069) +++ source/blender/editors/object/object_shapekey.c (working copy) @@ -384,6 +384,7 @@ /* identifiers */ ot->name= "Mirror Shape Key"; ot->idname= "OBJECT_OT_shape_key_mirror"; + ot->description= ""; /* api callbacks */ ot->poll= shape_key_mode_poll; @@ -453,6 +454,7 @@ /* identifiers */ ot->name= "Move Shape Key"; ot->idname= "OBJECT_OT_shape_key_move"; + ot->description= ""; /* api callbacks */ ot->poll= shape_key_mode_poll; Index: source/blender/editors/object/object_transform.c =================================================================== --- source/blender/editors/object/object_transform.c (revision 45069) +++ source/blender/editors/object/object_transform.c (working copy) @@ -261,7 +261,7 @@ { /* identifiers */ ot->name= "Clear Location"; - ot->description = "Clear the object's location"; + ot->description= "Clear the object's location"; ot->idname= "OBJECT_OT_location_clear"; /* api callbacks */ @@ -281,7 +281,7 @@ { /* identifiers */ ot->name= "Clear Rotation"; - ot->description = "Clear the object's rotation"; + ot->description= "Clear the object's rotation"; ot->idname= "OBJECT_OT_rotation_clear"; /* api callbacks */ @@ -301,7 +301,7 @@ { /* identifiers */ ot->name= "Clear Scale"; - ot->description = "Clear the object's scale"; + ot->description= "Clear the object's scale"; ot->idname= "OBJECT_OT_scale_clear"; /* api callbacks */ @@ -347,7 +347,7 @@ { /* identifiers */ ot->name= "Clear Origin"; - ot->description = "Clear the object's origin"; + ot->description= "Clear the object's origin"; ot->idname= "OBJECT_OT_origin_clear"; /* api callbacks */ @@ -592,7 +592,7 @@ { /* identifiers */ ot->name= "Apply Visual Transform"; - ot->description = "Apply the object's visual transformation to its data"; + ot->description= "Apply the object's visual transformation to its data"; ot->idname= "OBJECT_OT_visual_transform_apply"; /* api callbacks */ @@ -621,7 +621,7 @@ { /* identifiers */ ot->name= "Apply Object Transform"; - ot->description = "Apply the object's transformation to its data"; + ot->description= "Apply the object's transformation to its data"; ot->idname= "OBJECT_OT_transform_apply"; /* api callbacks */ @@ -958,7 +958,7 @@ /* identifiers */ ot->name= "Set Origin"; - ot->description = "Set the object's origin, by either moving the data, or set to center of data, or use 3d cursor"; + ot->description= "Set the object's origin, by either moving the data, or set to center of data, or use 3d cursor"; ot->idname= "OBJECT_OT_origin_set"; /* api callbacks */ Index: source/blender/editors/object/object_vgroup.c =================================================================== --- source/blender/editors/object/object_vgroup.c (revision 45069) +++ source/blender/editors/object/object_vgroup.c (working copy) @@ -2075,6 +2075,7 @@ /* identifiers */ ot->name= "Add Vertex Group"; ot->idname= "OBJECT_OT_vertex_group_add"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll; @@ -2105,6 +2106,7 @@ /* identifiers */ ot->name= "Remove Vertex Group"; ot->idname= "OBJECT_OT_vertex_group_remove"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll; @@ -2140,6 +2142,7 @@ /* identifiers */ ot->name= "Assign Vertex Group"; ot->idname= "OBJECT_OT_vertex_group_assign"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll_edit_or_wpaint_vert_select; @@ -2182,6 +2185,7 @@ /* identifiers */ ot->name= "Remove from Vertex Group"; ot->idname= "OBJECT_OT_vertex_group_remove_from"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll_edit_or_wpaint_vert_select; @@ -2215,6 +2219,7 @@ /* identifiers */ ot->name= "Select Vertex Group"; ot->idname= "OBJECT_OT_vertex_group_select"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll_edit_or_wpaint_vert_select; @@ -2239,6 +2244,7 @@ /* identifiers */ ot->name= "Deselect Vertex Group"; ot->idname= "OBJECT_OT_vertex_group_deselect"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll_edit_or_wpaint_vert_select; @@ -2265,6 +2271,7 @@ /* identifiers */ ot->name= "Copy Vertex Group"; ot->idname= "OBJECT_OT_vertex_group_copy"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll; @@ -2295,6 +2302,7 @@ /* identifiers */ ot->name= "Vertex Group Levels"; ot->idname= "OBJECT_OT_vertex_group_levels"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll; @@ -2325,6 +2333,7 @@ /* identifiers */ ot->name= "Normalize Vertex Group"; ot->idname= "OBJECT_OT_vertex_group_normalize"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll; @@ -2353,6 +2362,7 @@ /* identifiers */ ot->name= "Normalize All Vertex Groups"; ot->idname= "OBJECT_OT_vertex_group_normalize_all"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll; @@ -2433,6 +2443,7 @@ /* identifiers */ ot->name= "Change the Lock On Vertex Groups"; ot->idname= "OBJECT_OT_vertex_group_lock"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll; @@ -2463,6 +2474,7 @@ /* identifiers */ ot->name= "Invert Vertex Group"; ot->idname= "OBJECT_OT_vertex_group_invert"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll; @@ -2912,6 +2924,7 @@ /* identifiers */ ot->name= "Move Vertex Group"; ot->idname= "OBJECT_OT_vertex_group_move"; + ot->description= ""; /* api callbacks */ ot->poll= vertex_group_poll; Index: source/blender/editors/physics/dynamicpaint_ops.c =================================================================== --- source/blender/editors/physics/dynamicpaint_ops.c (revision 45069) +++ source/blender/editors/physics/dynamicpaint_ops.c (working copy) @@ -87,7 +87,7 @@ /* identifiers */ ot->name= "Add Surface Slot"; ot->idname= "DPAINT_OT_surface_slot_add"; - ot->description="Add a new Dynamic Paint surface slot"; + ot->description= "Add a new Dynamic Paint surface slot"; /* api callbacks */ ot->exec= surface_slot_add_exec; @@ -135,7 +135,7 @@ /* identifiers */ ot->name= "Remove Surface Slot"; ot->idname= "DPAINT_OT_surface_slot_remove"; - ot->description="Remove the selected surface slot"; + ot->description= "Remove the selected surface slot"; /* api callbacks */ ot->exec= surface_slot_remove_exec; @@ -183,7 +183,7 @@ /* identifiers */ ot->name= "Toggle Type Active"; ot->idname= "DPAINT_OT_type_toggle"; - ot->description = "Toggle whether given type is active or not"; + ot->description= "Toggle whether given type is active or not"; /* api callbacks */ ot->exec= type_toggle_exec; @@ -251,7 +251,7 @@ /* identifiers */ ot->name= "Toggle Output Layer"; ot->idname= "DPAINT_OT_output_toggle"; - ot->description = "Add or remove Dynamic Paint output data layer"; + ot->description= "Add or remove Dynamic Paint output data layer"; /* api callbacks */ ot->exec= output_toggle_exec; Index: source/blender/editors/physics/particle_boids.c =================================================================== --- source/blender/editors/physics/particle_boids.c (revision 45069) +++ source/blender/editors/physics/particle_boids.c (working copy) @@ -91,7 +91,7 @@ { /* identifiers */ ot->name= "Add Boid Rule"; - ot->description = "Add a boid rule to the current boid state"; + ot->description= "Add a boid rule to the current boid state"; ot->idname= "BOID_OT_rule_add"; /* api callbacks */ @@ -145,6 +145,7 @@ /* identifiers */ ot->name= "Remove Boid Rule"; ot->idname= "BOID_OT_rule_del"; + ot->description= ""; /* api callbacks */ ot->exec= rule_del_exec; @@ -262,7 +263,7 @@ { /* identifiers */ ot->name= "Add Boid State"; - ot->description = "Add a boid state to the particle system"; + ot->description= "Add a boid state to the particle system"; ot->idname= "BOID_OT_state_add"; /* api callbacks */ @@ -318,6 +319,7 @@ /* identifiers */ ot->name= "Remove Boid State"; ot->idname= "BOID_OT_state_del"; + ot->description= ""; /* api callbacks */ ot->exec= state_del_exec; Index: source/blender/editors/physics/particle_edit.c =================================================================== --- source/blender/editors/physics/particle_edit.c (revision 45069) +++ source/blender/editors/physics/particle_edit.c (working copy) @@ -1362,6 +1362,7 @@ /* identifiers */ ot->name= "(De)select All"; ot->idname= "PARTICLE_OT_select_all"; + ot->description= ""; /* api callbacks */ ot->exec= pe_select_all_exec; @@ -1436,6 +1437,7 @@ /* identifiers */ ot->name= "Select Roots"; ot->idname= "PARTICLE_OT_select_roots"; + ot->description= ""; /* api callbacks */ ot->exec= select_roots_exec; @@ -1476,6 +1478,7 @@ /* identifiers */ ot->name= "Select Tips"; ot->idname= "PARTICLE_OT_select_tips"; + ot->description= ""; /* api callbacks */ ot->exec= select_tips_exec; @@ -1520,6 +1523,7 @@ /* identifiers */ ot->name= "Select Linked"; ot->idname= "PARTICLE_OT_select_linked"; + ot->description= ""; /* api callbacks */ ot->exec= select_linked_exec; @@ -1708,6 +1712,7 @@ /* identifiers */ ot->name= "Hide Selected"; ot->idname= "PARTICLE_OT_hide"; + ot->description= ""; /* api callbacks */ ot->exec= hide_exec; @@ -1750,6 +1755,7 @@ /* identifiers */ ot->name= "Reveal"; ot->idname= "PARTICLE_OT_reveal"; + ot->description= ""; /* api callbacks */ ot->exec= reveal_exec; @@ -1808,6 +1814,7 @@ /* identifiers */ ot->name= "Select Less"; ot->idname= "PARTICLE_OT_select_less"; + ot->description= ""; /* api callbacks */ ot->exec= select_less_exec; @@ -1869,6 +1876,7 @@ /* identifiers */ ot->name= "Select More"; ot->idname= "PARTICLE_OT_select_more"; + ot->description= ""; /* api callbacks */ ot->exec= select_more_exec; @@ -1965,6 +1973,7 @@ /* identifiers */ ot->name= "Rekey"; ot->idname= "PARTICLE_OT_rekey"; + ot->description= ""; /* api callbacks */ ot->exec= rekey_exec; @@ -2295,6 +2304,7 @@ /* identifiers */ ot->name= "Subdivide"; ot->idname= "PARTICLE_OT_subdivide"; + ot->description= ""; /* api callbacks */ ot->exec= subdivide_exec; @@ -2383,6 +2393,7 @@ /* identifiers */ ot->name= "Remove Doubles"; ot->idname= "PARTICLE_OT_remove_doubles"; + ot->description= ""; /* api callbacks */ ot->exec= remove_doubles_exec; @@ -2433,6 +2444,7 @@ /* identifiers */ ot->name= "Weight Set"; ot->idname= "PARTICLE_OT_weight_set"; + ot->description= ""; /* api callbacks */ ot->exec= weight_set_exec; @@ -2536,6 +2548,7 @@ /* identifiers */ ot->name= "Delete"; ot->idname= "PARTICLE_OT_delete"; + ot->description= ""; /* api callbacks */ ot->exec= delete_exec; @@ -2696,6 +2709,7 @@ /* identifiers */ ot->name= "Mirror"; ot->idname= "PARTICLE_OT_mirror"; + ot->description= ""; /* api callbacks */ ot->exec= mirror_exec; @@ -3725,6 +3739,7 @@ /* identifiers */ ot->name= "Brush Edit"; ot->idname= "PARTICLE_OT_brush_edit"; + ot->description= ""; /* api callbacks */ ot->exec= brush_edit_exec; @@ -4215,6 +4230,7 @@ /* identifiers */ ot->name= "Particle Edit Toggle"; ot->idname= "PARTICLE_OT_particle_edit_toggle"; + ot->description= ""; /* api callbacks */ ot->exec= particle_edit_toggle_exec; @@ -4264,6 +4280,7 @@ /* identifiers */ ot->name= "Clear Edited"; ot->idname= "PARTICLE_OT_edited_clear"; + ot->description= ""; /* api callbacks */ ot->exec= clear_edited_exec; Index: source/blender/editors/physics/particle_object.c =================================================================== --- source/blender/editors/physics/particle_object.c (revision 45069) +++ source/blender/editors/physics/particle_object.c (working copy) @@ -86,7 +86,7 @@ /* identifiers */ ot->name= "Add Particle System Slot"; ot->idname= "OBJECT_OT_particle_system_add"; - ot->description="Add a particle system"; + ot->description= "Add a particle system"; /* api callbacks */ ot->poll= ED_operator_object_active_editable; @@ -125,7 +125,7 @@ /* identifiers */ ot->name= "Remove Particle System Slot"; ot->idname= "OBJECT_OT_particle_system_remove"; - ot->description="Remove the selected particle system"; + ot->description= "Remove the selected particle system"; /* api callbacks */ ot->poll= ED_operator_object_active_editable; @@ -184,7 +184,7 @@ /* identifiers */ ot->name= "New Particle Settings"; ot->idname= "PARTICLE_OT_new"; - ot->description="Add new particle settings"; + ot->description= "Add new particle settings"; /* api callbacks */ ot->exec= new_particle_settings_exec; @@ -233,7 +233,7 @@ /* identifiers */ ot->name= "New Particle Target"; ot->idname= "PARTICLE_OT_new_target"; - ot->description="Add a new particle target"; + ot->description= "Add a new particle target"; /* api callbacks */ ot->exec= new_particle_target_exec; @@ -282,7 +282,7 @@ /* identifiers */ ot->name= "Remove Particle Target"; ot->idname= "PARTICLE_OT_target_remove"; - ot->description="Remove the selected particle target"; + ot->description= "Remove the selected particle target"; /* api callbacks */ ot->exec= remove_particle_target_exec; @@ -438,7 +438,7 @@ /* identifiers */ ot->name= "Copy Particle Dupliob"; ot->idname= "PARTICLE_OT_dupliob_copy"; - ot->description="Duplicate the current dupliobject"; + ot->description= "Duplicate the current dupliobject"; /* api callbacks */ ot->exec= copy_particle_dupliob_exec; @@ -481,7 +481,7 @@ /* identifiers */ ot->name= "Remove Particle Dupliobject"; ot->idname= "PARTICLE_OT_dupliob_remove"; - ot->description="Remove the selected dupliobject"; + ot->description= "Remove the selected dupliobject"; /* api callbacks */ ot->exec= remove_particle_dupliob_exec; Index: source/blender/editors/physics/physics_pointcache.c =================================================================== --- source/blender/editors/physics/physics_pointcache.c (revision 45069) +++ source/blender/editors/physics/physics_pointcache.c (working copy) @@ -172,6 +172,7 @@ /* identifiers */ ot->name= "Free All Physics Bakes"; ot->idname= "PTCACHE_OT_free_bake_all"; + ot->description= ""; /* api callbacks */ ot->exec= ptcache_free_bake_all_exec; Index: source/blender/editors/render/render_shading.c =================================================================== --- source/blender/editors/render/render_shading.c (revision 45069) +++ source/blender/editors/render/render_shading.c (working copy) @@ -110,7 +110,7 @@ /* identifiers */ ot->name= "Add Material Slot"; ot->idname= "OBJECT_OT_material_slot_add"; - ot->description="Add a new material slot"; + ot->description= "Add a new material slot"; /* api callbacks */ ot->exec= material_slot_add_exec; @@ -146,7 +146,7 @@ /* identifiers */ ot->name= "Remove Material Slot"; ot->idname= "OBJECT_OT_material_slot_remove"; - ot->description="Remove the selected material slot"; + ot->description= "Remove the selected material slot"; /* api callbacks */ ot->exec= material_slot_remove_exec; @@ -208,7 +208,7 @@ /* identifiers */ ot->name= "Assign Material Slot"; ot->idname= "OBJECT_OT_material_slot_assign"; - ot->description="Assign the material in the selected material slot to the selected vertices"; + ot->description= "Assign the material in the selected material slot to the selected vertices"; /* api callbacks */ ot->exec= material_slot_assign_exec; @@ -292,7 +292,7 @@ /* identifiers */ ot->name= "Select Material Slot"; ot->idname= "OBJECT_OT_material_slot_select"; - ot->description="Select vertices assigned to the selected material slot"; + ot->description= "Select vertices assigned to the selected material slot"; /* api callbacks */ ot->exec= material_slot_select_exec; @@ -311,7 +311,7 @@ /* identifiers */ ot->name= "Deselect Material Slot"; ot->idname= "OBJECT_OT_material_slot_deselect"; - ot->description="Deselect vertices assigned to the selected material slot"; + ot->description= "Deselect vertices assigned to the selected material slot"; /* api callbacks */ ot->exec= material_slot_deselect_exec; @@ -351,7 +351,7 @@ /* identifiers */ ot->name= "Copy Material to Others"; ot->idname= "OBJECT_OT_material_slot_copy"; - ot->description="Copies materials to other selected objects"; + ot->description= "Copies materials to other selected objects"; /* api callbacks */ ot->exec= material_slot_copy_exec; @@ -405,7 +405,7 @@ /* identifiers */ ot->name= "New Material"; ot->idname= "MATERIAL_OT_new"; - ot->description="Add a new material"; + ot->description= "Add a new material"; /* api callbacks */ ot->exec= new_material_exec; @@ -451,7 +451,7 @@ /* identifiers */ ot->name= "New Texture"; ot->idname= "TEXTURE_OT_new"; - ot->description="Add a new texture"; + ot->description= "Add a new texture"; /* api callbacks */ ot->exec= new_texture_exec; @@ -533,7 +533,7 @@ /* identifiers */ ot->name= "Add Render Layer"; ot->idname= "SCENE_OT_render_layer_add"; - ot->description="Add a render layer"; + ot->description= "Add a render layer"; /* api callbacks */ ot->exec= render_layer_add_exec; @@ -560,7 +560,7 @@ /* identifiers */ ot->name= "Remove Render Layer"; ot->idname= "SCENE_OT_render_layer_remove"; - ot->description="Remove the selected render layer"; + ot->description= "Remove the selected render layer"; /* api callbacks */ ot->exec= render_layer_remove_exec; @@ -644,7 +644,7 @@ /* identifiers */ ot->name= "Move Texture Slot"; ot->idname= "TEXTURE_OT_slot_move"; - ot->description="Move texture slots up and down"; + ot->description= "Move texture slots up and down"; /* api callbacks */ ot->exec= texture_slot_move; @@ -735,7 +735,7 @@ /* identifiers */ ot->name= "Save Environment Map"; ot->idname= "TEXTURE_OT_envmap_save"; - ot->description="Save the current generated Environment map to an image file"; + ot->description= "Save the current generated Environment map to an image file"; /* api callbacks */ ot->exec= envmap_save_exec; @@ -782,7 +782,7 @@ /* identifiers */ ot->name= "Clear Environment Map"; ot->idname= "TEXTURE_OT_envmap_clear"; - ot->description="Discard the environment map and free it from memory"; + ot->description= "Discard the environment map and free it from memory"; /* api callbacks */ ot->exec= envmap_clear_exec; @@ -811,7 +811,7 @@ /* identifiers */ ot->name= "Clear All Environment Maps"; ot->idname= "TEXTURE_OT_envmap_clear_all"; - ot->description="Discard all environment maps in the .blend file and free them from memory"; + ot->description= "Discard all environment maps in the .blend file and free them from memory"; /* api callbacks */ ot->exec= envmap_clear_all_exec; @@ -841,7 +841,7 @@ /* identifiers */ ot->name= "Copy Material"; ot->idname= "MATERIAL_OT_copy"; - ot->description="Copy the material settings and nodes"; + ot->description= "Copy the material settings and nodes"; /* api callbacks */ ot->exec= copy_material_exec; @@ -869,7 +869,7 @@ /* identifiers */ ot->name= "Paste Material"; ot->idname= "MATERIAL_OT_paste"; - ot->description="Paste the material settings and nodes"; + ot->description= "Paste the material settings and nodes"; /* api callbacks */ ot->exec= paste_material_exec; @@ -986,7 +986,7 @@ /* identifiers */ ot->name= "Copy Texture Slot Settings"; ot->idname= "TEXTURE_OT_slot_copy"; - ot->description="Copy the material texture settings and nodes"; + ot->description= "Copy the material texture settings and nodes"; /* api callbacks */ ot->exec= copy_mtex_exec; @@ -1031,7 +1031,7 @@ /* identifiers */ ot->name= "Paste Texture Slot Settings"; ot->idname= "TEXTURE_OT_slot_paste"; - ot->description="Copy the texture settings and nodes"; + ot->description= "Copy the texture settings and nodes"; /* api callbacks */ ot->exec= paste_mtex_exec; Index: source/blender/editors/screen/screen_ops.c =================================================================== --- source/blender/editors/screen/screen_ops.c (revision 45069) +++ source/blender/editors/screen/screen_ops.c (working copy) @@ -1534,9 +1534,9 @@ static void SCREEN_OT_area_split(wmOperatorType *ot) { - ot->name = "Split area"; + ot->name= "Split area"; ot->description= "Split selected area into new windows"; - ot->idname = "SCREEN_OT_area_split"; + ot->idname= "SCREEN_OT_area_split"; ot->exec= area_split_exec; ot->invoke= area_split_invoke; @@ -1830,8 +1830,9 @@ static void SCREEN_OT_frame_offset(wmOperatorType *ot) { - ot->name = "Frame Offset"; - ot->idname = "SCREEN_OT_frame_offset"; + ot->name= "Frame Offset"; + ot->idname= "SCREEN_OT_frame_offset"; + ot->description= ""; ot->exec= frame_offset_exec; @@ -1880,9 +1881,9 @@ static void SCREEN_OT_frame_jump(wmOperatorType *ot) { - ot->name = "Jump to Endpoint"; + ot->name= "Jump to Endpoint"; ot->description= "Jump to first/last frame in frame range"; - ot->idname = "SCREEN_OT_frame_jump"; + ot->idname= "SCREEN_OT_frame_jump"; ot->exec= frame_jump_exec; @@ -1963,9 +1964,9 @@ static void SCREEN_OT_keyframe_jump(wmOperatorType *ot) { - ot->name = "Jump to Keyframe"; + ot->name= "Jump to Keyframe"; ot->description= "Jump to previous/next keyframe"; - ot->idname = "SCREEN_OT_keyframe_jump"; + ot->idname= "SCREEN_OT_keyframe_jump"; ot->exec= keyframe_jump_exec; @@ -2027,9 +2028,9 @@ static void SCREEN_OT_screen_set(wmOperatorType *ot) { - ot->name = "Set Screen"; + ot->name= "Set Screen"; ot->description= "Cycle through available screens"; - ot->idname = "SCREEN_OT_screen_set"; + ot->idname= "SCREEN_OT_screen_set"; ot->exec= screen_set_exec; ot->poll= ED_operator_screenactive; @@ -2061,9 +2062,9 @@ static void SCREEN_OT_screen_full_area(wmOperatorType *ot) { - ot->name = "Toggle Full Screen"; + ot->name= "Toggle Full Screen"; ot->description= "Toggle display selected area as fullscreen"; - ot->idname = "SCREEN_OT_screen_full_area"; + ot->idname= "SCREEN_OT_screen_full_area"; ot->exec= screen_full_area_exec; ot->poll= ED_operator_areaactive; @@ -2701,6 +2702,7 @@ /* identifiers */ ot->name= "Flip Region"; ot->idname= "SCREEN_OT_region_flip"; + ot->description= ""; /* api callbacks */ ot->exec= region_flip_exec; @@ -2750,6 +2752,7 @@ /* identifiers */ ot->name= "Flip Header Region"; ot->idname= "SCREEN_OT_header_flip"; + ot->description= ""; /* api callbacks */ ot->exec= header_flip_exec; @@ -2795,7 +2798,7 @@ { /* identifiers */ ot->name= "Header Toolbox"; - ot->description="Display header region toolbox"; + ot->description= "Display header region toolbox"; ot->idname= "SCREEN_OT_header_toolbox"; /* api callbacks */ @@ -3163,6 +3166,7 @@ /* identifiers */ ot->name= "Border select"; ot->idname= "SCREEN_OT_border_select"; + ot->description= ""; /* api callbacks */ ot->exec= border_select_do; Index: source/blender/editors/screen/screendump.c =================================================================== --- source/blender/editors/screen/screendump.c (revision 45069) +++ source/blender/editors/screen/screendump.c (working copy) @@ -220,6 +220,7 @@ { ot->name= "Save Screenshot"; /* weak: opname starting with 'save' makes filewindow give save-over */ ot->idname= "SCREEN_OT_screenshot"; + ot->description= ""; ot->invoke= screenshot_invoke; ot->exec= screenshot_exec; @@ -394,6 +395,7 @@ { ot->name= "Make Screencast"; ot->idname= "SCREEN_OT_screencast"; + ot->description= ""; ot->invoke= WM_operator_confirm; ot->exec= screencast_exec; Index: source/blender/editors/sculpt_paint/paint_hide.c =================================================================== --- source/blender/editors/sculpt_paint/paint_hide.c (revision 45069) +++ source/blender/editors/sculpt_paint/paint_hide.c (working copy) @@ -367,8 +367,9 @@ {0}}; /* identifiers */ - ot->name = "Hide/Show"; - ot->idname = "PAINT_OT_hide_show"; + ot->name= "Hide/Show"; + ot->idname= "PAINT_OT_hide_show"; + ot->description= ""; /* api callbacks */ ot->invoke = hide_show_invoke; Index: source/blender/editors/sculpt_paint/paint_image.c =================================================================== --- source/blender/editors/sculpt_paint/paint_image.c (revision 45069) +++ source/blender/editors/sculpt_paint/paint_image.c (working copy) @@ -5115,6 +5115,7 @@ /* identifiers */ ot->name= "Image Paint"; ot->idname= "PAINT_OT_image_paint"; + ot->description= ""; /* api callbacks */ ot->exec= paint_exec; @@ -5342,6 +5343,7 @@ /* identifiers */ ot->name= "Grab Clone"; ot->idname= "PAINT_OT_grab_clone"; + ot->description= ""; /* api callbacks */ ot->exec= grab_clone_exec; @@ -5424,6 +5426,7 @@ /* identifiers */ ot->name= "Sample Color"; ot->idname= "PAINT_OT_sample_color"; + ot->description= ""; /* api callbacks */ ot->exec= sample_color_exec; @@ -5475,6 +5478,7 @@ /* identifiers */ ot->name= "Set Clone Cursor"; ot->idname= "PAINT_OT_clone_cursor_set"; + ot->description= ""; /* api callbacks */ ot->exec= set_clone_cursor_exec; @@ -5557,6 +5561,7 @@ /* identifiers */ ot->name= "Texture Paint Toggle"; ot->idname= "PAINT_OT_texture_paint_toggle"; + ot->description= ""; /* api callbacks */ ot->exec= texture_paint_toggle_exec; Index: source/blender/editors/sculpt_paint/paint_ops.c =================================================================== --- source/blender/editors/sculpt_paint/paint_ops.c (revision 45069) +++ source/blender/editors/sculpt_paint/paint_ops.c (working copy) @@ -160,6 +160,7 @@ /* identifiers */ ot->name= "Set Vertex Colors"; ot->idname= "PAINT_OT_vertex_color_set"; + ot->description= ""; /* api callbacks */ ot->exec= vertex_color_set_exec; @@ -366,9 +367,9 @@ /* from rna_scene.c */ extern EnumPropertyItem uv_sculpt_tool_items[]; /* identifiers */ - ot->name = "UV Sculpt Tool Set"; - ot->description = "Set the UV sculpt tool"; - ot->idname = "BRUSH_OT_uv_sculpt_tool_set"; + ot->name= "UV Sculpt Tool Set"; + ot->description= "Set the UV sculpt tool"; + ot->idname= "BRUSH_OT_uv_sculpt_tool_set"; /* api callbacks */ ot->exec = brush_uv_sculpt_tool_set_exec; Index: source/blender/editors/sculpt_paint/paint_vertex.c =================================================================== --- source/blender/editors/sculpt_paint/paint_vertex.c (revision 45069) +++ source/blender/editors/sculpt_paint/paint_vertex.c (working copy) @@ -1079,6 +1079,7 @@ /* identifiers */ ot->name= "Weight Paint Sample Weight"; ot->idname= "PAINT_OT_weight_sample"; + ot->description= ""; /* api callbacks */ ot->invoke= weight_sample_invoke; @@ -1180,6 +1181,7 @@ /* identifiers */ ot->name= "Weight Paint Sample Group"; ot->idname= "PAINT_OT_weight_sample_group"; + ot->description= ""; /* api callbacks */ ot->exec= weight_sample_group_exec; @@ -2041,6 +2043,7 @@ /* identifiers */ ot->name= "Weight Paint Mode"; ot->idname= "PAINT_OT_weight_paint_toggle"; + ot->description= ""; /* api callbacks */ ot->exec= set_wpaint; @@ -2493,6 +2496,7 @@ /* identifiers */ ot->name= "Weight Paint"; ot->idname= "PAINT_OT_weight_paint"; + ot->description= ""; /* api callbacks */ ot->invoke= wpaint_invoke; @@ -2522,6 +2526,7 @@ /* identifiers */ ot->name= "Set Weight"; ot->idname= "PAINT_OT_weight_set"; + ot->description= ""; /* api callbacks */ ot->exec= weight_paint_set_exec; @@ -2584,6 +2589,7 @@ /* identifiers */ ot->name= "Vertex Paint Mode"; ot->idname= "PAINT_OT_vertex_paint_toggle"; + ot->description= ""; /* api callbacks */ ot->exec= set_vpaint; @@ -2994,6 +3000,7 @@ /* identifiers */ ot->name= "Vertex Paint"; ot->idname= "PAINT_OT_vertex_paint"; + ot->description= ""; /* api callbacks */ ot->invoke= vpaint_invoke; @@ -3043,6 +3050,7 @@ /* identifiers */ ot->name= "Weight from Bones"; ot->idname= "PAINT_OT_weight_from_bones"; + ot->description= ""; /* api callbacks */ ot->exec= weight_from_bones_exec; Index: source/blender/editors/sculpt_paint/sculpt.c =================================================================== --- source/blender/editors/sculpt_paint/sculpt.c (revision 45069) +++ source/blender/editors/sculpt_paint/sculpt.c (working copy) @@ -3565,6 +3565,7 @@ /* identifiers */ ot->name= "Sculpt Mode"; ot->idname= "SCULPT_OT_brush_stroke"; + ot->description= ""; /* api callbacks */ ot->invoke= sculpt_brush_stroke_invoke; @@ -3610,6 +3611,7 @@ /* identifiers */ ot->name= "Set Persistent Base"; ot->idname= "SCULPT_OT_set_persistent_base"; + ot->description= ""; /* api callbacks */ ot->exec= sculpt_set_persistent_base; @@ -3688,6 +3690,7 @@ /* identifiers */ ot->name= "Sculpt Mode"; ot->idname= "SCULPT_OT_sculptmode_toggle"; + ot->description= ""; /* api callbacks */ ot->exec= sculpt_toggle_mode; Index: source/blender/editors/sculpt_paint/sculpt_uv.c =================================================================== --- source/blender/editors/sculpt_paint/sculpt_uv.c (revision 45069) +++ source/blender/editors/sculpt_paint/sculpt_uv.c (working copy) @@ -790,9 +790,9 @@ }; /* identifiers */ - ot->name = "Sculpt UVs"; - ot->description = "Sculpt UVs using a brush"; - ot->idname = "SCULPT_OT_uv_sculpt_stroke"; + ot->name= "Sculpt UVs"; + ot->description= "Sculpt UVs using a brush"; + ot->idname= "SCULPT_OT_uv_sculpt_stroke"; /* api callbacks */ ot->invoke = uv_sculpt_stroke_invoke; Index: source/blender/editors/space_action/action_select.c =================================================================== --- source/blender/editors/space_action/action_select.c (revision 45069) +++ source/blender/editors/space_action/action_select.c (working copy) @@ -585,9 +585,9 @@ void ACTION_OT_select_linked (wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Linked"; + ot->name= "Select Linked"; ot->idname= "ACTION_OT_select_linked"; - ot->description = "Select keyframes occurring in the same F-Curves as selected ones"; + ot->description= "Select keyframes occurring in the same F-Curves as selected ones"; /* api callbacks */ ot->exec= actkeys_select_linked_exec; @@ -662,9 +662,9 @@ void ACTION_OT_select_more (wmOperatorType *ot) { /* identifiers */ - ot->name = "Select More"; + ot->name= "Select More"; ot->idname= "ACTION_OT_select_more"; - ot->description = "Select keyframes beside already selected ones"; + ot->description= "Select keyframes beside already selected ones"; /* api callbacks */ ot->exec= actkeys_select_more_exec; @@ -696,9 +696,9 @@ void ACTION_OT_select_less (wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Less"; + ot->name= "Select Less"; ot->idname= "ACTION_OT_select_less"; - ot->description = "Deselect keyframes on ends of selection islands"; + ot->description= "Deselect keyframes on ends of selection islands"; /* api callbacks */ ot->exec= actkeys_select_less_exec; Index: source/blender/editors/space_buttons/buttons_ops.c =================================================================== --- source/blender/editors/space_buttons/buttons_ops.c (revision 45069) +++ source/blender/editors/space_buttons/buttons_ops.c (working copy) @@ -82,7 +82,7 @@ { /* identifiers */ ot->name= "Toolbox"; - ot->description="Display button panel toolbox"; + ot->description= "Display button panel toolbox"; ot->idname= "BUTTONS_OT_toolbox"; /* api callbacks */ @@ -221,7 +221,7 @@ { /* identifiers */ ot->name= "Accept"; - ot->description="Open a file browser, Hold Shift to open the file, Alt to browse containing directory"; + ot->description= "Open a file browser, Hold Shift to open the file, Alt to browse containing directory"; ot->idname= "BUTTONS_OT_file_browse"; /* api callbacks */ @@ -238,7 +238,7 @@ { /* identifiers */ ot->name= "Accept"; - ot->description="Open a directory browser, Hold Shift to open the file, Alt to browse containing directory"; + ot->description= "Open a directory browser, Hold Shift to open the file, Alt to browse containing directory"; ot->idname= "BUTTONS_OT_directory_browse"; /* api callbacks */ Index: source/blender/editors/space_clip/clip_graph_ops.c =================================================================== --- source/blender/editors/space_clip/clip_graph_ops.c (revision 45069) +++ source/blender/editors/space_clip/clip_graph_ops.c (working copy) @@ -375,9 +375,9 @@ void CLIP_OT_graph_select_border(wmOperatorType *ot) { /* identifiers */ - ot->name = "Border Select"; - ot->description = "Select curve points using border selection"; - ot->idname = "CLIP_OT_graph_select_border"; + ot->name= "Border Select"; + ot->description= "Select curve points using border selection"; + ot->idname= "CLIP_OT_graph_select_border"; /* api callbacks */ ot->invoke = WM_border_select_invoke; @@ -444,9 +444,9 @@ void CLIP_OT_graph_select_all_markers(wmOperatorType *ot) { /* identifiers */ - ot->name = "(De)select All Markers"; - ot->description = "Change selection of all markers of active track"; - ot->idname = "CLIP_OT_graph_select_all_markers"; + ot->name= "(De)select All Markers"; + ot->description= "Change selection of all markers of active track"; + ot->idname= "CLIP_OT_graph_select_all_markers"; /* api callbacks */ ot->exec = graph_select_all_markers_exec; @@ -590,9 +590,9 @@ void CLIP_OT_graph_view_all(wmOperatorType *ot) { /* identifiers */ - ot->name = "View All"; - ot->description = "View all curves in editor"; - ot->idname = "CLIP_OT_graph_view_all"; + ot->name= "View All"; + ot->description= "View all curves in editor"; + ot->idname= "CLIP_OT_graph_view_all"; /* api callbacks */ ot->exec = view_all_exec; @@ -626,9 +626,9 @@ void CLIP_OT_graph_center_current_frame(wmOperatorType *ot) { /* identifiers */ - ot->name = "Center Current Frame"; - ot->description = "Scroll view so current frame would be centered"; - ot->idname = "CLIP_OT_graph_center_current_frame"; + ot->name= "Center Current Frame"; + ot->description= "Scroll view so current frame would be centered"; + ot->idname= "CLIP_OT_graph_center_current_frame"; /* api callbacks */ ot->exec = center_current_frame_exec; @@ -680,9 +680,9 @@ }; /* identifiers */ - ot->name = "Disable Markers"; - ot->description = "Disable/enable selected markers"; - ot->idname = "CLIP_OT_graph_disable_markers"; + ot->name= "Disable Markers"; + ot->description= "Disable/enable selected markers"; + ot->idname= "CLIP_OT_graph_disable_markers"; /* api callbacks */ ot->exec = graph_disable_markers_exec; Index: source/blender/editors/space_clip/clip_ops.c =================================================================== --- source/blender/editors/space_clip/clip_ops.c (revision 45069) +++ source/blender/editors/space_clip/clip_ops.c (working copy) @@ -392,6 +392,7 @@ /* identifiers */ ot->name= "View Pan"; ot->idname= "CLIP_OT_view_pan"; + ot->description= ""; /* api callbacks */ ot->exec= view_pan_exec; @@ -516,6 +517,7 @@ /* identifiers */ ot->name= "View Zoom"; ot->idname= "CLIP_OT_view_zoom"; + ot->description= ""; /* api callbacks */ ot->exec= view_zoom_exec; @@ -564,6 +566,7 @@ /* identifiers */ ot->name= "View Zoom In"; ot->idname= "CLIP_OT_view_zoom_in"; + ot->description= ""; /* api callbacks */ ot->exec= view_zoom_in_exec; @@ -604,6 +607,7 @@ /* identifiers */ ot->name= "View Zoom Out"; ot->idname= "CLIP_OT_view_zoom_out"; + ot->description= ""; /* api callbacks */ ot->exec= view_zoom_out_exec; @@ -637,6 +641,7 @@ /* identifiers */ ot->name= "View Zoom Ratio"; ot->idname= "CLIP_OT_view_zoom_ratio"; + ot->description= ""; /* api callbacks */ ot->exec= view_zoom_ratio_exec; @@ -704,6 +709,7 @@ /* identifiers */ ot->name= "View All"; ot->idname= "CLIP_OT_view_all"; + ot->description= ""; /* api callbacks */ ot->exec= view_all_exec; @@ -734,6 +740,7 @@ /* identifiers */ ot->name= "View Selected"; ot->idname= "CLIP_OT_view_selected"; + ot->description= ""; /* api callbacks */ ot->exec= view_selected_exec; @@ -1045,7 +1052,7 @@ /* identifiers */ ot->name= "Set Clip Mode"; - ot->description = "Set the clip interaction mode"; + ot->description= "Set the clip interaction mode"; ot->idname= "CLIP_OT_mode_set"; /* api callbacks */ @@ -1066,13 +1073,13 @@ wmOperatorTypeMacro *otmacro; ot= WM_operatortype_append_macro("CLIP_OT_add_marker_move", "Add Marker and Move", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Add new marker and move it on movie"; + ot->description= "Add new marker and move it on movie"; WM_operatortype_macro_define(ot, "CLIP_OT_add_marker"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_struct_idprops_unset(otmacro->ptr, "release_confirm"); ot= WM_operatortype_append_macro("CLIP_OT_add_marker_slide", "Add Marker and Slide", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Add new marker and slide it with mouse until mouse button release"; + ot->description= "Add new marker and slide it with mouse until mouse button release"; WM_operatortype_macro_define(ot, "CLIP_OT_add_marker"); otmacro= WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_boolean_set(otmacro->ptr, "release_confirm", TRUE); Index: source/blender/editors/space_clip/tracking_ops.c =================================================================== --- source/blender/editors/space_clip/tracking_ops.c (revision 45069) +++ source/blender/editors/space_clip/tracking_ops.c (working copy) @@ -3562,9 +3562,9 @@ void CLIP_OT_copy_tracks(wmOperatorType *ot) { /* identifiers */ - ot->name = "Copy Tracks"; - ot->description = "Copy selected tracks to clipboard"; - ot->idname = "CLIP_OT_copy_tracks"; + ot->name= "Copy Tracks"; + ot->description= "Copy selected tracks to clipboard"; + ot->idname= "CLIP_OT_copy_tracks"; /* api callbacks */ ot->exec = copy_tracks_exec; @@ -3602,9 +3602,9 @@ void CLIP_OT_paste_tracks(wmOperatorType *ot) { /* identifiers */ - ot->name = "Paste Tracks"; - ot->description = "Paste tracks from clipboard"; - ot->idname = "CLIP_OT_paste_tracks"; + ot->name= "Paste Tracks"; + ot->description= "Paste tracks from clipboard"; + ot->idname= "CLIP_OT_paste_tracks"; /* api callbacks */ ot->exec = paste_tracks_exec; Index: source/blender/editors/space_file/file_ops.c =================================================================== --- source/blender/editors/space_file/file_ops.c (revision 45069) +++ source/blender/editors/space_file/file_ops.c (working copy) @@ -985,7 +985,7 @@ /* identifiers */ ot->name= "Smooth Scroll"; ot->idname= "FILE_OT_smoothscroll"; - ot->description="Smooth scroll to make editable file visible"; + ot->description= "Smooth scroll to make editable file visible"; /* api callbacks */ ot->invoke= file_smoothscroll_invoke; Index: source/blender/editors/space_graph/graph_select.c =================================================================== --- source/blender/editors/space_graph/graph_select.c (revision 45069) +++ source/blender/editors/space_graph/graph_select.c (working copy) @@ -596,9 +596,9 @@ void GRAPH_OT_select_linked (wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Linked"; + ot->name= "Select Linked"; ot->idname= "GRAPH_OT_select_linked"; - ot->description = "Select keyframes occurring in the same F-Curves as selected ones"; + ot->description= "Select keyframes occurring in the same F-Curves as selected ones"; /* api callbacks */ ot->exec= graphkeys_select_linked_exec; @@ -674,9 +674,9 @@ void GRAPH_OT_select_more (wmOperatorType *ot) { /* identifiers */ - ot->name = "Select More"; + ot->name= "Select More"; ot->idname= "GRAPH_OT_select_more"; - ot->description = "Select keyframes beside already selected ones"; + ot->description= "Select keyframes beside already selected ones"; /* api callbacks */ ot->exec= graphkeys_select_more_exec; @@ -708,9 +708,9 @@ void GRAPH_OT_select_less (wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Less"; + ot->name= "Select Less"; ot->idname= "GRAPH_OT_select_less"; - ot->description = "Deselect keyframes on ends of selection islands"; + ot->description= "Deselect keyframes on ends of selection islands"; /* api callbacks */ ot->exec= graphkeys_select_less_exec; Index: source/blender/editors/space_image/image_ops.c =================================================================== --- source/blender/editors/space_image/image_ops.c (revision 45069) +++ source/blender/editors/space_image/image_ops.c (working copy) @@ -333,6 +333,7 @@ /* identifiers */ ot->name= "View Pan"; ot->idname= "IMAGE_OT_view_pan"; + ot->description= ""; /* api callbacks */ ot->exec= image_view_pan_exec; @@ -470,6 +471,7 @@ /* identifiers */ ot->name= "View Zoom"; ot->idname= "IMAGE_OT_view_zoom"; + ot->description= ""; /* api callbacks */ ot->exec= image_view_zoom_exec; @@ -538,6 +540,7 @@ /* identifiers */ ot->name= "NDOF Pan/Zoom"; ot->idname= "IMAGE_OT_view_ndof"; + ot->description= ""; /* api callbacks */ ot->invoke= image_view_ndof_invoke; @@ -591,6 +594,7 @@ /* identifiers */ ot->name= "View All"; ot->idname= "IMAGE_OT_view_all"; + ot->description= ""; /* api callbacks */ ot->exec= image_view_all_exec; @@ -652,6 +656,7 @@ /* identifiers */ ot->name= "View Center"; ot->idname= "IMAGE_OT_view_selected"; + ot->description= ""; /* api callbacks */ ot->exec= image_view_selected_exec; @@ -691,6 +696,7 @@ /* identifiers */ ot->name= "View Zoom In"; ot->idname= "IMAGE_OT_view_zoom_in"; + ot->description= ""; /* api callbacks */ ot->invoke= image_view_zoom_in_invoke; @@ -732,6 +738,7 @@ /* identifiers */ ot->name= "View Zoom Out"; ot->idname= "IMAGE_OT_view_zoom_out"; + ot->description= ""; /* api callbacks */ ot->invoke= image_view_zoom_out_invoke; @@ -774,6 +781,7 @@ /* identifiers */ ot->name= "View Zoom Ratio"; ot->idname= "IMAGE_OT_view_zoom_ratio"; + ot->description= ""; /* api callbacks */ ot->exec= image_view_zoom_ratio_exec; @@ -977,6 +985,7 @@ /* identifiers */ ot->name= "Replace Image"; ot->idname= "IMAGE_OT_replace"; + ot->description= ""; /* api callbacks */ ot->exec= image_replace_exec; @@ -1322,6 +1331,7 @@ /* identifiers */ ot->name= "Save As Image"; ot->idname= "IMAGE_OT_save_as"; + ot->description= ""; /* api callbacks */ ot->exec= image_save_as_exec; @@ -1368,6 +1378,7 @@ /* identifiers */ ot->name= "Save Image"; ot->idname= "IMAGE_OT_save"; + ot->description= ""; /* api callbacks */ ot->exec= image_save_exec; @@ -1445,6 +1456,7 @@ /* identifiers */ ot->name= "Save Sequence"; ot->idname= "IMAGE_OT_save_sequence"; + ot->description= ""; /* api callbacks */ ot->exec= image_save_sequence_exec; @@ -1480,6 +1492,7 @@ /* identifiers */ ot->name= "Reload Image"; ot->idname= "IMAGE_OT_reload"; + ot->description= ""; /* api callbacks */ ot->exec= image_reload_exec; @@ -1652,6 +1665,7 @@ /* identifiers */ ot->name= "Invert Channels"; ot->idname= "IMAGE_OT_invert"; + ot->description= ""; /* api callbacks */ ot->exec= image_invert_exec; @@ -2027,6 +2041,7 @@ /* identifiers */ ot->name= "Sample Color"; ot->idname= "IMAGE_OT_sample"; + ot->description= ""; /* api callbacks */ ot->invoke= image_sample_invoke; @@ -2135,6 +2150,7 @@ /* identifiers */ ot->name= "Sample Line"; ot->idname= "IMAGE_OT_sample_line"; + ot->description= ""; /* api callbacks */ ot->invoke= image_sample_line_invoke; @@ -2161,6 +2177,7 @@ /* identifiers */ ot->name= "Set Curves Point"; ot->idname= "IMAGE_OT_curves_point_set"; + ot->description= ""; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -2315,6 +2332,7 @@ /* identifiers */ ot->name= "Record Composite"; ot->idname= "IMAGE_OT_record_composite"; + ot->description= ""; /* api callbacks */ ot->exec= image_record_composite_exec; @@ -2370,6 +2388,7 @@ /* identifiers */ ot->name= "Cycle Render Slot"; ot->idname= "IMAGE_OT_cycle_render_slot"; + ot->description= ""; /* api callbacks */ ot->exec= image_cycle_render_slot_exec; Index: source/blender/editors/space_info/info_ops.c =================================================================== --- source/blender/editors/space_info/info_ops.c (revision 45069) +++ source/blender/editors/space_info/info_ops.c (working copy) @@ -107,6 +107,7 @@ /* identifiers */ ot->name= "Pack All"; ot->idname= "FILE_OT_pack_all"; + ot->description= ""; /* api callbacks */ ot->exec= pack_all_exec; @@ -175,6 +176,7 @@ /* identifiers */ ot->name= "Unpack All"; ot->idname= "FILE_OT_unpack_all"; + ot->description= ""; /* api callbacks */ ot->exec= unpack_all_exec; @@ -211,6 +213,7 @@ /* identifiers */ ot->name= "Make All Paths Relative"; ot->idname= "FILE_OT_make_paths_relative"; + ot->description= ""; /* api callbacks */ ot->exec= make_paths_relative_exec; @@ -243,6 +246,7 @@ /* identifiers */ ot->name= "Make All Paths Absolute"; ot->idname= "FILE_OT_make_paths_absolute"; + ot->description= ""; /* api callbacks */ ot->exec= make_paths_absolute_exec; @@ -268,6 +272,7 @@ /* identifiers */ ot->name= "Report Missing Files"; ot->idname= "FILE_OT_report_missing_files"; + ot->description= ""; /* api callbacks */ ot->exec= report_missing_files_exec; @@ -300,6 +305,7 @@ /* identifiers */ ot->name= "Find Missing Files"; ot->idname= "FILE_OT_find_missing_files"; + ot->description= ""; /* api callbacks */ ot->exec= find_missing_files_exec; @@ -411,6 +417,7 @@ /* identifiers */ ot->name= "Update Reports Display"; ot->idname= "INFO_OT_reports_display_update"; + ot->description= ""; /* api callbacks */ ot->invoke= update_reports_display_invoke; Index: source/blender/editors/space_logic/logic_ops.c =================================================================== --- source/blender/editors/space_logic/logic_ops.c (revision 45069) +++ source/blender/editors/space_logic/logic_ops.c (working copy) @@ -314,7 +314,7 @@ /* identifiers */ ot->name= "Add Sensor"; - ot->description = "Add a sensor to the active object"; + ot->description= "Add a sensor to the active object"; ot->idname= "LOGIC_OT_sensor_add"; /* api callbacks */ @@ -429,7 +429,7 @@ { /* identifiers */ ot->name= "Add Controller"; - ot->description = "Add a controller to the active object"; + ot->description= "Add a controller to the active object"; ot->idname= "LOGIC_OT_controller_add"; /* api callbacks */ @@ -531,7 +531,7 @@ /* identifiers */ ot->name= "Add Actuator"; - ot->description = "Add an actuator to the active object"; + ot->description= "Add an actuator to the active object"; ot->idname= "LOGIC_OT_actuator_add"; /* api callbacks */ @@ -585,7 +585,7 @@ { /* identifiers */ ot->name= "Move Sensor"; - ot->description = "Move Sensor"; + ot->description= "Move Sensor"; ot->idname= "LOGIC_OT_sensor_move"; /* api callbacks */ @@ -630,7 +630,7 @@ { /* identifiers */ ot->name= "Move Controller"; - ot->description = "Move Controller"; + ot->description= "Move Controller"; ot->idname= "LOGIC_OT_controller_move"; /* api callbacks */ @@ -675,7 +675,7 @@ { /* identifiers */ ot->name= "Move Actuator"; - ot->description = "Move Actuator"; + ot->description= "Move Actuator"; ot->idname= "LOGIC_OT_actuator_move"; /* api callbacks */ @@ -709,7 +709,7 @@ { /* identifiers */ ot->name= "TexFace to Material Converter"; - ot->description = "Convert old texface settings into material. It may create new materials if needed"; + ot->description= "Convert old texface settings into material. It may create new materials if needed"; ot->idname= "LOGIC_OT_texface_convert"; /* api callbacks */ Index: source/blender/editors/space_node/node_edit.c =================================================================== --- source/blender/editors/space_node/node_edit.c (revision 45069) +++ source/blender/editors/space_node/node_edit.c (working copy) @@ -870,9 +870,9 @@ void NODE_OT_group_edit(wmOperatorType *ot) { /* identifiers */ - ot->name = "Edit Group"; - ot->description = "Edit node group"; - ot->idname = "NODE_OT_group_edit"; + ot->name= "Edit Group"; + ot->description= "Edit node group"; + ot->idname= "NODE_OT_group_edit"; /* api callbacks */ ot->invoke = node_group_edit_invoke; @@ -920,9 +920,9 @@ void NODE_OT_group_socket_add(wmOperatorType *ot) { /* identifiers */ - ot->name = "Add Group Socket"; - ot->description = "Add node group socket"; - ot->idname = "NODE_OT_group_socket_add"; + ot->name= "Add Group Socket"; + ot->description= "Add node group socket"; + ot->idname= "NODE_OT_group_socket_add"; /* api callbacks */ ot->exec = node_group_socket_add_exec; @@ -972,9 +972,9 @@ void NODE_OT_group_socket_remove(wmOperatorType *ot) { /* identifiers */ - ot->name = "Remove Group Socket"; - ot->description = "Remove a node group socket"; - ot->idname = "NODE_OT_group_socket_remove"; + ot->name= "Remove Group Socket"; + ot->description= "Remove a node group socket"; + ot->idname= "NODE_OT_group_socket_remove"; /* api callbacks */ ot->exec = node_group_socket_remove_exec; @@ -1042,9 +1042,9 @@ void NODE_OT_group_socket_move_up(wmOperatorType *ot) { /* identifiers */ - ot->name = "Move Group Socket Up"; - ot->description = "Move up node group socket"; - ot->idname = "NODE_OT_group_socket_move_up"; + ot->name= "Move Group Socket Up"; + ot->description= "Move up node group socket"; + ot->idname= "NODE_OT_group_socket_move_up"; /* api callbacks */ ot->exec = node_group_socket_move_up_exec; @@ -1112,9 +1112,9 @@ void NODE_OT_group_socket_move_down(wmOperatorType *ot) { /* identifiers */ - ot->name = "Move Group Socket Down"; - ot->description = "Move down node group socket"; - ot->idname = "NODE_OT_group_socket_move_down"; + ot->name= "Move Group Socket Down"; + ot->description= "Move down node group socket"; + ot->idname= "NODE_OT_group_socket_move_down"; /* api callbacks */ ot->exec = node_group_socket_move_down_exec; @@ -1163,9 +1163,9 @@ void NODE_OT_group_ungroup(wmOperatorType *ot) { /* identifiers */ - ot->name = "Ungroup"; - ot->description = "Ungroup selected nodes"; - ot->idname = "NODE_OT_group_ungroup"; + ot->name= "Ungroup"; + ot->description= "Ungroup selected nodes"; + ot->idname= "NODE_OT_group_ungroup"; /* api callbacks */ ot->exec = node_group_ungroup_exec; @@ -1280,7 +1280,7 @@ { /* identifiers */ ot->name= "Background Image Move"; - ot->description = "Move Node backdrop"; + ot->description= "Move Node backdrop"; ot->idname= "NODE_OT_backimage_move"; /* api callbacks */ @@ -1312,6 +1312,7 @@ /* identifiers */ ot->name= "Background Image Zoom"; ot->idname= "NODE_OT_backimage_zoom"; + ot->description= ""; /* api callbacks */ ot->exec= backimage_zoom; @@ -1478,6 +1479,7 @@ /* identifiers */ ot->name= "Backimage Sample"; ot->idname= "NODE_OT_backimage_sample"; + ot->description= ""; /* api callbacks */ ot->invoke= sample_invoke; @@ -1589,6 +1591,7 @@ /* identifiers */ ot->name= "Resize Node"; ot->idname= "NODE_OT_resize"; + ot->description= ""; /* api callbacks */ ot->invoke= node_resize_invoke; @@ -1758,7 +1761,7 @@ { /* identifiers */ ot->name= "Link to Viewer Node"; - ot->description = "Link to viewer node"; + ot->description= "Link to viewer node"; ot->idname= "NODE_OT_link_viewer"; /* api callbacks */ @@ -2241,7 +2244,7 @@ { /* identifiers */ ot->name= "Duplicate Nodes"; - ot->description = "Duplicate selected nodes"; + ot->description= "Duplicate selected nodes"; ot->idname= "NODE_OT_duplicate"; /* api callbacks */ @@ -2566,6 +2569,7 @@ /* identifiers */ ot->name= "Link Nodes"; ot->idname= "NODE_OT_link"; + ot->description= ""; /* api callbacks */ ot->invoke= node_link_invoke; @@ -2684,6 +2688,7 @@ ot->name= "Cut links"; ot->idname= "NODE_OT_links_cut"; + ot->description= ""; ot->invoke= WM_gesture_lines_invoke; ot->modal= WM_gesture_lines_modal; @@ -2729,6 +2734,7 @@ { ot->name= "Detach Links"; ot->idname= "NODE_OT_links_detach"; + ot->description= ""; ot->exec= detach_links_exec; ot->poll= ED_operator_node_active; @@ -2923,6 +2929,7 @@ ot->name= "Read Render Layers"; ot->idname= "NODE_OT_read_renderlayers"; + ot->description= ""; ot->exec= node_read_renderlayers_exec; @@ -2956,6 +2963,7 @@ ot->name= "Read Full Sample Layers"; ot->idname= "NODE_OT_read_fullsamplelayers"; + ot->description= ""; ot->exec= node_read_fullsamplelayers_exec; @@ -3004,6 +3012,7 @@ ot->name= "Render Changed Layer"; ot->idname= "NODE_OT_render_changed"; + ot->description= ""; ot->exec= node_render_changed_exec; @@ -3061,9 +3070,9 @@ void NODE_OT_group_make(wmOperatorType *ot) { /* identifiers */ - ot->name = "Group"; - ot->description = "Make group from selected nodes"; - ot->idname = "NODE_OT_group_make"; + ot->name= "Group"; + ot->description= "Make group from selected nodes"; + ot->idname= "NODE_OT_group_make"; /* api callbacks */ ot->exec = node_group_make_exec; @@ -3336,7 +3345,7 @@ { /* identifiers */ ot->name= "Delete"; - ot->description = "Delete selected nodes"; + ot->description= "Delete selected nodes"; ot->idname= "NODE_OT_delete"; /* api callbacks */ @@ -3379,7 +3388,7 @@ { /* identifiers */ ot->name= "Delete with reconnect"; - ot->description = "Delete nodes; will reconnect nodes as if deletion was muted"; + ot->description= "Delete nodes; will reconnect nodes as if deletion was muted"; ot->idname= "NODE_OT_delete_reconnect"; /* api callbacks */ @@ -3574,6 +3583,7 @@ /* identifiers */ ot->name= "New node tree"; ot->idname= "NODE_OT_new_node_tree"; + ot->description= ""; /* api callbacks */ ot->exec= new_node_tree_exec; Index: source/blender/editors/space_node/node_ops.c =================================================================== --- source/blender/editors/space_node/node_ops.c (revision 45069) +++ source/blender/editors/space_node/node_ops.c (working copy) @@ -111,24 +111,24 @@ wmOperatorTypeMacro *mot; ot= WM_operatortype_append_macro("NODE_OT_duplicate_move", "Duplicate", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Duplicate selected nodes and move them"; + ot->description= "Duplicate selected nodes and move them"; WM_operatortype_macro_define(ot, "NODE_OT_duplicate"); WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); /* modified operator call for duplicating with input links */ ot= WM_operatortype_append_macro("NODE_OT_duplicate_move_keep_inputs", "Duplicate", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Duplicate selected nodes keeping input links and move them"; + ot->description= "Duplicate selected nodes keeping input links and move them"; mot = WM_operatortype_macro_define(ot, "NODE_OT_duplicate"); RNA_boolean_set(mot->ptr, "keep_inputs", TRUE); WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); ot= WM_operatortype_append_macro("NODE_OT_select_link_viewer", "Link Viewer", OPTYPE_UNDO); - ot->description = "Select node and link it to a viewer node"; + ot->description= "Select node and link it to a viewer node"; WM_operatortype_macro_define(ot, "NODE_OT_select"); WM_operatortype_macro_define(ot, "NODE_OT_link_viewer"); ot= WM_operatortype_append_macro("NODE_OT_move_detach_links", "Detach", OPTYPE_UNDO|OPTYPE_REGISTER); - ot->description = "Move a node to detach links"; + ot->description= "Move a node to detach links"; WM_operatortype_macro_define(ot, "NODE_OT_links_detach"); mot = WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_boolean_set(mot->ptr, "release_confirm", TRUE); Index: source/blender/editors/space_node/node_select.c =================================================================== --- source/blender/editors/space_node/node_select.c (revision 45069) +++ source/blender/editors/space_node/node_select.c (working copy) @@ -654,9 +654,9 @@ void NODE_OT_select_all(wmOperatorType *ot) { /* identifiers */ - ot->name = "(De)select All"; - ot->description = "(De)select all nodes"; - ot->idname = "NODE_OT_select_all"; + ot->name= "(De)select All"; + ot->description= "(De)select all nodes"; + ot->idname= "NODE_OT_select_all"; /* api callbacks */ ot->exec = node_select_all_exec; @@ -696,9 +696,9 @@ void NODE_OT_select_linked_to(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Linked To"; - ot->description = "Select nodes linked to the selected ones"; - ot->idname = "NODE_OT_select_linked_to"; + ot->name= "Select Linked To"; + ot->description= "Select nodes linked to the selected ones"; + ot->idname= "NODE_OT_select_linked_to"; /* api callbacks */ ot->exec = node_select_linked_to_exec; @@ -738,9 +738,9 @@ void NODE_OT_select_linked_from(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Linked From"; - ot->description = "Select nodes linked from the selected ones"; - ot->idname = "NODE_OT_select_linked_from"; + ot->name= "Select Linked From"; + ot->description= "Select nodes linked from the selected ones"; + ot->idname= "NODE_OT_select_linked_from"; /* api callbacks */ ot->exec = node_select_linked_from_exec; @@ -767,9 +767,9 @@ void NODE_OT_select_same_type(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Same Type"; - ot->description = "Select all the nodes of the same type"; - ot->idname = "NODE_OT_select_same_type"; + ot->name= "Select Same Type"; + ot->description= "Select all the nodes of the same type"; + ot->idname= "NODE_OT_select_same_type"; /* api callbacks */ ot->exec = node_select_same_type_exec; @@ -797,9 +797,9 @@ void NODE_OT_select_same_type_next(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Same Type Next"; - ot->description = "Select the next node of the same type"; - ot->idname = "NODE_OT_select_same_type_next"; + ot->name= "Select Same Type Next"; + ot->description= "Select the next node of the same type"; + ot->idname= "NODE_OT_select_same_type_next"; /* api callbacks */ ot->exec = node_select_same_type_next_exec; @@ -824,9 +824,9 @@ void NODE_OT_select_same_type_prev(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Same Type Prev"; - ot->description = "Select the prev node of the same type"; - ot->idname = "NODE_OT_select_same_type_prev"; + ot->name= "Select Same Type Prev"; + ot->description= "Select the prev node of the same type"; + ot->idname= "NODE_OT_select_same_type_prev"; /* api callbacks */ ot->exec = node_select_same_type_prev_exec; Index: source/blender/editors/space_outliner/outliner_edit.c =================================================================== --- source/blender/editors/space_outliner/outliner_edit.c (revision 45069) +++ source/blender/editors/space_outliner/outliner_edit.c (working copy) @@ -1419,7 +1419,7 @@ /* identifiers */ ot->idname= "OUTLINER_OT_keyingset_remove_selected"; ot->name= "Keying Set Remove Selected"; - ot->description = "Remove selected items (blue-grey rows) from active Keying Set"; + ot->description= "Remove selected items (blue-grey rows) from active Keying Set"; /* api callbacks */ ot->exec= outliner_keyingset_removeitems_exec; @@ -1625,7 +1625,7 @@ { /* identifiers */ ot->name= "Drop to Set Parent"; - ot->description = "Drag to parent in Outliner"; + ot->description= "Drag to parent in Outliner"; ot->idname= "OUTLINER_OT_parent_drop"; /* api callbacks */ @@ -1703,7 +1703,7 @@ { /* identifiers */ ot->name= "Drop to Clear Parent"; - ot->description = "Drag to clear parent in Outliner"; + ot->description= "Drag to clear parent in Outliner"; ot->idname= "OUTLINER_OT_parent_clear"; /* api callbacks */ Index: source/blender/editors/space_sequencer/sequencer_edit.c =================================================================== --- source/blender/editors/space_sequencer/sequencer_edit.c (revision 45069) +++ source/blender/editors/space_sequencer/sequencer_edit.c (working copy) @@ -1090,7 +1090,7 @@ /* identifiers */ ot->name= "Snap strips"; ot->idname= "SEQUENCER_OT_snap"; - ot->description="Frame where selected strips will be snapped"; + ot->description= "Frame where selected strips will be snapped"; /* api callbacks */ ot->invoke= sequencer_snap_invoke; @@ -1137,7 +1137,7 @@ /* identifiers */ ot->name= "Mute Strips"; ot->idname= "SEQUENCER_OT_mute"; - ot->description="Mute selected strips"; + ot->description= "Mute selected strips"; /* api callbacks */ ot->exec= sequencer_mute_exec; @@ -1184,7 +1184,7 @@ /* identifiers */ ot->name= "Un-Mute Strips"; ot->idname= "SEQUENCER_OT_unmute"; - ot->description="Un-Mute unselected rather than selected strips"; + ot->description= "Un-Mute unselected rather than selected strips"; /* api callbacks */ ot->exec= sequencer_unmute_exec; @@ -1220,7 +1220,7 @@ /* identifiers */ ot->name= "Lock Strips"; ot->idname= "SEQUENCER_OT_lock"; - ot->description="Lock the active strip so that it can't be transformed"; + ot->description= "Lock the active strip so that it can't be transformed"; /* api callbacks */ ot->exec= sequencer_lock_exec; @@ -1253,7 +1253,7 @@ /* identifiers */ ot->name= "UnLock Strips"; ot->idname= "SEQUENCER_OT_unlock"; - ot->description="Unlock the active strip so that it can't be transformed"; + ot->description= "Unlock the active strip so that it can't be transformed"; /* api callbacks */ ot->exec= sequencer_unlock_exec; @@ -1286,7 +1286,7 @@ /* identifiers */ ot->name= "Reload Strips"; ot->idname= "SEQUENCER_OT_reload"; - ot->description="Reload strips in the sequencer"; + ot->description= "Reload strips in the sequencer"; /* api callbacks */ ot->exec= sequencer_reload_exec; @@ -1314,7 +1314,7 @@ /* identifiers */ ot->name= "Refresh Sequencer"; ot->idname= "SEQUENCER_OT_refresh_all"; - ot->description="Refresh the sequencer editor"; + ot->description= "Refresh the sequencer editor"; /* api callbacks */ ot->exec= sequencer_refresh_all_exec; @@ -1371,7 +1371,7 @@ /* identifiers */ ot->name= "Reassign Inputs"; ot->idname= "SEQUENCER_OT_reassign_inputs"; - ot->description="Reassign the inputs for the effect strip"; + ot->description= "Reassign the inputs for the effect strip"; /* api callbacks */ ot->exec= sequencer_reassign_inputs_exec; @@ -1407,7 +1407,7 @@ /* identifiers */ ot->name= "Swap Inputs"; ot->idname= "SEQUENCER_OT_swap_inputs"; - ot->description="Swap the first two inputs for the effect strip"; + ot->description= "Swap the first two inputs for the effect strip"; /* api callbacks */ ot->exec= sequencer_swap_inputs_exec; @@ -1502,7 +1502,7 @@ /* identifiers */ ot->name= "Cut Strips"; ot->idname= "SEQUENCER_OT_cut"; - ot->description="Cut the selected strips"; + ot->description= "Cut the selected strips"; /* api callbacks */ ot->invoke= sequencer_cut_invoke; @@ -1572,7 +1572,7 @@ /* identifiers */ ot->name= "Duplicate Strips"; ot->idname= "SEQUENCER_OT_duplicate"; - ot->description="Duplicate the selected strips"; + ot->description= "Duplicate the selected strips"; /* api callbacks */ ot->invoke= sequencer_add_duplicate_invoke; @@ -1644,7 +1644,7 @@ /* identifiers */ ot->name= "Erase Strips"; ot->idname= "SEQUENCER_OT_delete"; - ot->description="Erase selected strips from the sequencer"; + ot->description= "Erase selected strips from the sequencer"; /* api callbacks */ ot->invoke= WM_operator_confirm; @@ -1697,7 +1697,7 @@ /* identifiers */ ot->name= "Clear Strip Offset"; ot->idname= "SEQUENCER_OT_offset_clear"; - ot->description="Clear strip offsets from the start and end frames"; + ot->description= "Clear strip offsets from the start and end frames"; /* api callbacks */ ot->exec= sequencer_offset_clear_exec; @@ -1788,7 +1788,7 @@ /* identifiers */ ot->name= "Separate Images"; ot->idname= "SEQUENCER_OT_images_separate"; - ot->description="On image sequence strips, it returns a strip for each image"; + ot->description= "On image sequence strips, it returns a strip for each image"; /* api callbacks */ ot->exec= sequencer_separate_images_exec; @@ -1860,7 +1860,7 @@ /* identifiers */ ot->name= "Toggle Meta Strip"; ot->idname= "SEQUENCER_OT_meta_toggle"; - ot->description="Toggle a metastrip (to edit enclosed strips)"; + ot->description= "Toggle a metastrip (to edit enclosed strips)"; /* api callbacks */ ot->exec= sequencer_meta_toggle_exec; @@ -1926,7 +1926,7 @@ /* identifiers */ ot->name= "Make Meta Strip"; ot->idname= "SEQUENCER_OT_meta_make"; - ot->description="Group selected strips into a metastrip"; + ot->description= "Group selected strips into a metastrip"; /* api callbacks */ ot->invoke= WM_operator_confirm; @@ -1997,7 +1997,7 @@ /* identifiers */ ot->name= "UnMeta Strip"; ot->idname= "SEQUENCER_OT_meta_separate"; - ot->description="Put the contents of a metastrip back in the sequencer"; + ot->description= "Put the contents of a metastrip back in the sequencer"; /* api callbacks */ ot->invoke= WM_operator_confirm; @@ -2030,7 +2030,7 @@ /* identifiers */ ot->name= "View All"; ot->idname= "SEQUENCER_OT_view_all"; - ot->description="View all the strips in the sequencer"; + ot->description= "View all the strips in the sequencer"; /* api callbacks */ ot->exec= sequencer_view_all_exec; @@ -2096,7 +2096,7 @@ /* identifiers */ ot->name= "View All"; ot->idname= "SEQUENCER_OT_view_all_preview"; - ot->description="Zoom preview to fit in the area"; + ot->description= "Zoom preview to fit in the area"; /* api callbacks */ ot->exec= sequencer_view_all_preview_exec; @@ -2132,7 +2132,7 @@ /* identifiers */ ot->name= "Sequencer View Zoom Ratio"; ot->idname= "SEQUENCER_OT_view_zoom_ratio"; - ot->description = "Change zoom ratio of sequencer preview"; + ot->description= "Change zoom ratio of sequencer preview"; /* api callbacks */ ot->exec= sequencer_view_zoom_ratio_exec; @@ -2170,7 +2170,7 @@ /* identifiers */ ot->name= "View Toggle"; ot->idname= "SEQUENCER_OT_view_toggle"; - ot->description="Toggle between sequencer views (sequence, preview, both)"; + ot->description= "Toggle between sequencer views (sequence, preview, both)"; /* api callbacks */ ot->exec= sequencer_view_toggle_exec; @@ -2250,7 +2250,7 @@ /* identifiers */ ot->name= "View Selected"; ot->idname= "SEQUENCER_OT_view_selected"; - ot->description="Zoom the sequencer on the selected strips"; + ot->description= "Zoom the sequencer on the selected strips"; /* api callbacks */ ot->exec= sequencer_view_selected_exec; @@ -2335,7 +2335,7 @@ /* identifiers */ ot->name= "Next Edit"; ot->idname= "SEQUENCER_OT_next_edit"; - ot->description="Move frame to next edit point"; + ot->description= "Move frame to next edit point"; /* api callbacks */ ot->exec= sequencer_next_edit_exec; @@ -2365,7 +2365,7 @@ /* identifiers */ ot->name= "Previous Edit"; ot->idname= "SEQUENCER_OT_previous_edit"; - ot->description="Move frame to previous edit point"; + ot->description= "Move frame to previous edit point"; /* api callbacks */ ot->exec= sequencer_previous_edit_exec; @@ -2469,7 +2469,7 @@ /* identifiers */ ot->name= "Swap Strip"; ot->idname= "SEQUENCER_OT_swap"; - ot->description="Swap active strip with strip to the right or left"; + ot->description= "Swap active strip with strip to the right or left"; /* api callbacks */ ot->exec= sequencer_swap_exec; @@ -2528,7 +2528,7 @@ /* identifiers */ ot->name= "Set Render Size"; ot->idname= "SEQUENCER_OT_rendersize"; - ot->description="Set render size and aspect from active sequence"; + ot->description= "Set render size and aspect from active sequence"; /* api callbacks */ ot->exec= sequencer_rendersize_exec; @@ -2607,7 +2607,7 @@ /* identifiers */ ot->name= "Copy"; ot->idname= "SEQUENCER_OT_copy"; - ot->description=""; + ot->description= ""; /* api callbacks */ ot->exec= sequencer_copy_exec; @@ -2675,7 +2675,7 @@ /* identifiers */ ot->name= "Paste"; ot->idname= "SEQUENCER_OT_paste"; - ot->description=""; + ot->description= ""; /* api callbacks */ ot->exec= sequencer_paste_exec; @@ -2726,7 +2726,7 @@ /* identifiers */ ot->name= "Sequencer Swap Data"; ot->idname= "SEQUENCER_OT_swap_data"; - ot->description="Swap 2 sequencer strips"; + ot->description= "Swap 2 sequencer strips"; /* api callbacks */ ot->exec= sequencer_swap_data_exec; @@ -2783,7 +2783,7 @@ /* identifiers */ ot->name= "Border Offset View"; ot->idname= "SEQUENCER_OT_view_ghost_border"; - ot->description="Enable border select mode"; + ot->description= "Enable border select mode"; /* api callbacks */ ot->invoke= WM_border_select_invoke; @@ -2812,7 +2812,7 @@ /* identifiers */ ot->name= "Rebuild Proxy and Timecode Indices"; ot->idname= "SEQUENCER_OT_rebuild_proxy"; - ot->description="Rebuild all selected proxies and timecode indeces using the job system"; + ot->description= "Rebuild all selected proxies and timecode indeces using the job system"; /* api callbacks */ ot->exec= sequencer_rebuild_proxy_exec; @@ -2877,7 +2877,7 @@ /* identifiers */ ot->name= "Change Effect Input"; ot->idname= "SEQUENCER_OT_change_effect_input"; - ot->description=""; + ot->description= ""; /* api callbacks */ ot->exec= sequencer_change_effect_input_exec; @@ -2937,7 +2937,7 @@ /* identifiers */ ot->name= "Change Effect Type"; ot->idname= "SEQUENCER_OT_change_effect_type"; - ot->description=""; + ot->description= ""; /* api callbacks */ ot->exec= sequencer_change_effect_type_exec; @@ -3043,7 +3043,7 @@ /* identifiers */ ot->name= "Change Data/Files"; ot->idname= "SEQUENCER_OT_change_path"; - ot->description=""; + ot->description= ""; /* api callbacks */ ot->exec= sequencer_change_path_exec; Index: source/blender/editors/space_sequencer/sequencer_select.c =================================================================== --- source/blender/editors/space_sequencer/sequencer_select.c (revision 45069) +++ source/blender/editors/space_sequencer/sequencer_select.c (working copy) @@ -261,7 +261,7 @@ /* identifiers */ ot->name= "(De)select All"; ot->idname= "SEQUENCER_OT_select_all"; - ot->description="Select or deselect all strips"; + ot->description= "Select or deselect all strips"; /* api callbacks */ ot->exec= sequencer_de_select_all_exec; @@ -301,7 +301,7 @@ /* identifiers */ ot->name= "Select Inverse"; ot->idname= "SEQUENCER_OT_select_inverse"; - ot->description="Select unselected strips"; + ot->description= "Select unselected strips"; /* api callbacks */ ot->exec= sequencer_select_inverse_exec; @@ -524,7 +524,7 @@ /* identifiers */ ot->name= "Activate/Select"; ot->idname= "SEQUENCER_OT_select"; - ot->description="Select a strip (last selected becomes the \"active strip\")"; + ot->description= "Select a strip (last selected becomes the \"active strip\")"; /* api callbacks */ ot->invoke= sequencer_select_invoke; @@ -614,7 +614,7 @@ /* identifiers */ ot->name= "Select More"; ot->idname= "SEQUENCER_OT_select_more"; - ot->description="Select more strips adjacent to the current selection"; + ot->description= "Select more strips adjacent to the current selection"; /* api callbacks */ ot->exec= sequencer_select_more_exec; @@ -645,7 +645,7 @@ /* identifiers */ ot->name= "Select Less"; ot->idname= "SEQUENCER_OT_select_less"; - ot->description="Shrink the current selection of adjacent selected strips"; + ot->description= "Shrink the current selection of adjacent selected strips"; /* api callbacks */ ot->exec= sequencer_select_less_exec; @@ -695,7 +695,7 @@ /* identifiers */ ot->name= "Select pick linked"; ot->idname= "SEQUENCER_OT_select_linked_pick"; - ot->description="Select a chain of linked strips nearest to the mouse pointer"; + ot->description= "Select a chain of linked strips nearest to the mouse pointer"; /* api callbacks */ ot->invoke= sequencer_select_linked_pick_invoke; @@ -730,7 +730,7 @@ /* identifiers */ ot->name= "Select linked"; ot->idname= "SEQUENCER_OT_select_linked"; - ot->description="Select all strips adjacent to the current selection"; + ot->description= "Select all strips adjacent to the current selection"; /* api callbacks */ ot->exec= sequencer_select_linked_exec; @@ -780,7 +780,7 @@ /* identifiers */ ot->name= "Select Handles"; ot->idname= "SEQUENCER_OT_select_handles"; - ot->description="Select manipulator handles on the sides of the selected strip"; + ot->description= "Select manipulator handles on the sides of the selected strip"; /* api callbacks */ ot->exec= sequencer_select_handles_exec; @@ -817,7 +817,7 @@ /* identifiers */ ot->name= "Select Active Side"; ot->idname= "SEQUENCER_OT_select_active_side"; - ot->description="Select strips on the nominated side of the active strip"; + ot->description= "Select strips on the nominated side of the active strip"; /* api callbacks */ ot->exec= sequencer_select_active_side_exec; @@ -886,7 +886,7 @@ /* identifiers */ ot->name= "Border Select"; ot->idname= "SEQUENCER_OT_select_border"; - ot->description="Enable border select mode"; + ot->description= "Enable border select mode"; /* api callbacks */ ot->invoke= WM_border_select_invoke; @@ -1152,9 +1152,9 @@ void SEQUENCER_OT_select_grouped(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Grouped"; - ot->description = "Select all strips grouped by various properties"; - ot->idname = "SEQUENCER_OT_select_grouped"; + ot->name= "Select Grouped"; + ot->description= "Select all strips grouped by various properties"; + ot->idname= "SEQUENCER_OT_select_grouped"; /* api callbacks */ ot->invoke = WM_menu_invoke; Index: source/blender/editors/space_time/time_ops.c =================================================================== --- source/blender/editors/space_time/time_ops.c (revision 45069) +++ source/blender/editors/space_time/time_ops.c (working copy) @@ -77,7 +77,7 @@ /* identifiers */ ot->name= "Set Start Frame"; ot->idname= "TIME_OT_start_frame_set"; - ot->description="Set the start frame"; + ot->description= "Set the start frame"; /* api callbacks */ ot->exec= time_set_sfra_exec; @@ -119,7 +119,7 @@ /* identifiers */ ot->name= "Set End Frame"; ot->idname= "TIME_OT_end_frame_set"; - ot->description="Set the end frame"; + ot->description= "Set the end frame"; /* api callbacks */ ot->exec= time_set_efra_exec; Index: source/blender/editors/space_view3d/view3d_buttons.c =================================================================== --- source/blender/editors/space_view3d/view3d_buttons.c (revision 45069) +++ source/blender/editors/space_view3d/view3d_buttons.c (working copy) @@ -1443,9 +1443,9 @@ void VIEW3D_OT_properties(wmOperatorType *ot) { - ot->name = "Properties"; - ot->description = "Toggles the properties panel display"; - ot->idname = "VIEW3D_OT_properties"; + ot->name= "Properties"; + ot->description= "Toggles the properties panel display"; + ot->idname= "VIEW3D_OT_properties"; ot->exec = view3d_properties; ot->poll = ED_operator_view3d_active; Index: source/blender/editors/space_view3d/view3d_edit.c =================================================================== --- source/blender/editors/space_view3d/view3d_edit.c (revision 45069) +++ source/blender/editors/space_view3d/view3d_edit.c (working copy) @@ -949,7 +949,7 @@ /* identifiers */ ot->name= "Rotate view"; - ot->description = "Rotate the view"; + ot->description= "Rotate the view"; ot->idname= "VIEW3D_OT_rotate"; /* api callbacks */ @@ -1120,9 +1120,9 @@ void VIEW3D_OT_ndof_orbit(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "NDOF Orbit View"; - ot->description = "Explore every angle of an object using the 3D mouse"; - ot->idname = "VIEW3D_OT_ndof_orbit"; + ot->name= "NDOF Orbit View"; + ot->description= "Explore every angle of an object using the 3D mouse"; + ot->idname= "VIEW3D_OT_ndof_orbit"; /* api callbacks */ ot->invoke = ndof_orbit_invoke; @@ -1214,9 +1214,9 @@ void VIEW3D_OT_ndof_pan(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "NDOF Pan View"; - ot->description = "Position your viewpoint with the 3D mouse"; - ot->idname = "VIEW3D_OT_ndof_pan"; + ot->name= "NDOF Pan View"; + ot->description= "Position your viewpoint with the 3D mouse"; + ot->idname= "VIEW3D_OT_ndof_pan"; /* api callbacks */ ot->invoke = ndof_pan_invoke; @@ -1376,7 +1376,7 @@ /* identifiers */ ot->name= "Move view"; - ot->description = "Move the view"; + ot->description= "Move the view"; ot->idname= "VIEW3D_OT_move"; /* api callbacks */ @@ -1759,7 +1759,7 @@ { /* identifiers */ ot->name= "Zoom View"; - ot->description = "Zoom in/out in the view"; + ot->description= "Zoom in/out in the view"; ot->idname= "VIEW3D_OT_zoom"; /* api callbacks */ @@ -1992,7 +1992,7 @@ { /* identifiers */ ot->name= "Dolly view"; - ot->description = "Dolly in/out in the view"; + ot->description= "Dolly in/out in the view"; ot->idname= "VIEW3D_OT_dolly"; /* api callbacks */ @@ -2101,7 +2101,7 @@ { /* identifiers */ ot->name= "View All"; - ot->description = "View all objects in scene"; + ot->description= "View all objects in scene"; ot->idname= "VIEW3D_OT_view_all"; /* api callbacks */ @@ -2248,7 +2248,7 @@ /* identifiers */ ot->name= "View Selected"; - ot->description = "Move the view to the selection center"; + ot->description= "Move the view to the selection center"; ot->idname= "VIEW3D_OT_view_selected"; /* api callbacks */ @@ -2328,7 +2328,7 @@ { /* identifiers */ ot->name= "View Camera Center"; - ot->description = "Center the camera view"; + ot->description= "Center the camera view"; ot->idname= "VIEW3D_OT_view_center_camera"; /* api callbacks */ @@ -2394,7 +2394,7 @@ { /* identifiers */ ot->name= "Set Render Border"; - ot->description = "Set the boundaries of the border render and enables border render"; + ot->description= "Set the boundaries of the border render and enables border render"; ot->idname= "VIEW3D_OT_render_border"; /* api callbacks */ @@ -2560,7 +2560,7 @@ { /* identifiers */ ot->name= "Border Zoom"; - ot->description = "Zoom in the view to the nearest object contained in the border"; + ot->description= "Zoom in the view to the nearest object contained in the border"; ot->idname= "VIEW3D_OT_zoom_border"; /* api callbacks */ @@ -2616,7 +2616,7 @@ { /* identifiers */ ot->name= "Zoom Camera 1:1"; - ot->description = "Match the camera to 1:1 to the render output"; + ot->description= "Match the camera to 1:1 to the render output"; ot->idname= "VIEW3D_OT_zoom_camera_1_to_1"; /* api callbacks */ @@ -2857,7 +2857,7 @@ { /* identifiers */ ot->name= "View numpad"; - ot->description = "Set the view"; + ot->description= "Set the view"; ot->idname= "VIEW3D_OT_viewnumpad"; /* api callbacks */ @@ -2930,7 +2930,7 @@ { /* identifiers */ ot->name= "View Orbit"; - ot->description = "Orbit the view"; + ot->description= "Orbit the view"; ot->idname= "VIEW3D_OT_view_orbit"; /* api callbacks */ @@ -2978,7 +2978,7 @@ { /* identifiers */ ot->name= "View Pan"; - ot->description = "Pan the view"; + ot->description= "Pan the view"; ot->idname= "VIEW3D_OT_view_pan"; /* api callbacks */ @@ -3015,7 +3015,7 @@ { /* identifiers */ ot->name= "View Persp/Ortho"; - ot->description = "Switch the current view from perspective/orthographic"; + ot->description= "Switch the current view from perspective/orthographic"; ot->idname= "VIEW3D_OT_view_persportho"; /* api callbacks */ @@ -3082,9 +3082,9 @@ void VIEW3D_OT_background_image_add(wmOperatorType *ot) { /* identifiers */ - ot->name = "Add Background Image"; + ot->name= "Add Background Image"; ot->description= "Add a new background image"; - ot->idname = "VIEW3D_OT_background_image_add"; + ot->idname= "VIEW3D_OT_background_image_add"; /* api callbacks */ ot->invoke = background_image_add_invoke; @@ -3121,9 +3121,9 @@ void VIEW3D_OT_background_image_remove(wmOperatorType *ot) { /* identifiers */ - ot->name = "Remove Background Image"; + ot->name= "Remove Background Image"; ot->description= "Remove a background image from the 3D view"; - ot->idname = "VIEW3D_OT_background_image_remove"; + ot->idname= "VIEW3D_OT_background_image_remove"; /* api callbacks */ ot->exec = background_image_remove_exec; @@ -3221,7 +3221,7 @@ /* identifiers */ ot->name= "Clipping Border"; - ot->description = "Set the view clipping border"; + ot->description= "Set the view clipping border"; ot->idname= "VIEW3D_OT_clip_border"; /* api callbacks */ @@ -3315,7 +3315,7 @@ /* identifiers */ ot->name= "Set 3D Cursor"; - ot->description = "Set the location of the 3D cursor"; + ot->description= "Set the location of the 3D cursor"; ot->idname= "VIEW3D_OT_cursor3d"; /* api callbacks */ @@ -3357,7 +3357,7 @@ /* identifiers */ ot->name= "3D Manipulator"; - ot->description = "Manipulate selected item by axis"; + ot->description= "Manipulate selected item by axis"; ot->idname= "VIEW3D_OT_manipulator"; /* api callbacks */ @@ -3391,7 +3391,7 @@ { /* identifiers */ ot->name= "Enable 3D Manipulator"; - ot->description = "Enable the transform manipulator for use"; + ot->description= "Enable the transform manipulator for use"; ot->idname= "VIEW3D_OT_enable_manipulator"; /* api callbacks */ Index: source/blender/editors/space_view3d/view3d_fly.c =================================================================== --- source/blender/editors/space_view3d/view3d_fly.c (revision 45069) +++ source/blender/editors/space_view3d/view3d_fly.c (working copy) @@ -1234,9 +1234,9 @@ void VIEW3D_OT_fly(wmOperatorType *ot) { /* identifiers */ - ot->name = "Fly Navigation"; - ot->description = "Interactively fly around the scene"; - ot->idname = "VIEW3D_OT_fly"; + ot->name= "Fly Navigation"; + ot->description= "Interactively fly around the scene"; + ot->idname= "VIEW3D_OT_fly"; /* api callbacks */ ot->invoke = fly_invoke; Index: source/blender/editors/space_view3d/view3d_select.c =================================================================== --- source/blender/editors/space_view3d/view3d_select.c (revision 45069) +++ source/blender/editors/space_view3d/view3d_select.c (working copy) @@ -1151,7 +1151,7 @@ /* identifiers */ ot->name= "Select Menu"; - ot->description = "Menu object selection"; + ot->description= "Menu object selection"; ot->idname= "VIEW3D_OT_select_menu"; /* api callbacks */ Index: source/blender/editors/space_view3d/view3d_view.c =================================================================== --- source/blender/editors/space_view3d/view3d_view.c (revision 45069) +++ source/blender/editors/space_view3d/view3d_view.c (working copy) @@ -336,7 +336,7 @@ /* identifiers */ ot->name= "Smooth View"; ot->idname= "VIEW3D_OT_smoothview"; - ot->description="The time to animate the change of view (in milliseconds)"; + ot->description= "The time to animate the change of view (in milliseconds)"; /* api callbacks */ ot->invoke= view3d_smoothview_invoke; Index: source/blender/editors/transform/transform_ops.c =================================================================== --- source/blender/editors/transform/transform_ops.c (revision 45069) +++ source/blender/editors/transform/transform_ops.c (working copy) @@ -202,9 +202,9 @@ PropertyRNA *prop; /* identifiers */ - ot->name = "Select Orientation"; + ot->name= "Select Orientation"; ot->description= "Select transformation orientation"; - ot->idname = "TRANSFORM_OT_select_orientation"; + ot->idname= "TRANSFORM_OT_select_orientation"; ot->flag = OPTYPE_UNDO; /* api callbacks */ @@ -255,9 +255,9 @@ static void TRANSFORM_OT_delete_orientation(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Delete Orientation"; + ot->name= "Delete Orientation"; ot->description= "Delete transformation orientation"; - ot->idname = "TRANSFORM_OT_delete_orientation"; + ot->idname= "TRANSFORM_OT_delete_orientation"; ot->flag = OPTYPE_UNDO; /* api callbacks */ @@ -290,9 +290,9 @@ static void TRANSFORM_OT_create_orientation(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Create Orientation"; + ot->name= "Create Orientation"; ot->description= "Create transformation orientation from selection"; - ot->idname = "TRANSFORM_OT_create_orientation"; + ot->idname= "TRANSFORM_OT_create_orientation"; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* api callbacks */ @@ -516,9 +516,9 @@ void TRANSFORM_OT_translate(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Translate"; + ot->name= "Translate"; ot->description= "Translate selected items"; - ot->idname = OP_TRANSLATION; + ot->idname= OP_TRANSLATION; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -536,9 +536,9 @@ void TRANSFORM_OT_resize(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Resize"; + ot->name= "Resize"; ot->description= "Resize selected items"; - ot->idname = OP_RESIZE; + ot->idname= OP_RESIZE; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -557,9 +557,9 @@ void TRANSFORM_OT_trackball(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Trackball"; + ot->name= "Trackball"; ot->description= "Trackball style rotation of selected items"; - ot->idname = OP_TRACKBALL; + ot->idname= OP_TRACKBALL; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -577,9 +577,9 @@ void TRANSFORM_OT_rotate(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Rotate"; + ot->name= "Rotate"; ot->description= "Rotate selected items"; - ot->idname = OP_ROTATION; + ot->idname= OP_ROTATION; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -597,12 +597,12 @@ void TRANSFORM_OT_tilt(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Tilt"; + ot->name= "Tilt"; /* optionals - * "Tilt selected vertices" * "Specify an extra axis rotation for selected vertices of 3d curve" */ ot->description= "Tilt selected control vertices of 3d curve"; - ot->idname = OP_TILT; + ot->idname= OP_TILT; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -620,9 +620,9 @@ void TRANSFORM_OT_warp(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Warp"; + ot->name= "Warp"; ot->description= "Warp selected items around the cursor"; - ot->idname = OP_WARP; + ot->idname= OP_WARP; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -641,9 +641,9 @@ void TRANSFORM_OT_shear(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Shear"; + ot->name= "Shear"; ot->description= "Shear selected items along the horizontal screen axis"; - ot->idname = OP_SHEAR; + ot->idname= OP_SHEAR; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -662,9 +662,9 @@ void TRANSFORM_OT_push_pull(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Push/Pull"; + ot->name= "Push/Pull"; ot->description= "Push/Pull selected items"; - ot->idname = OP_PUSH_PULL; + ot->idname= OP_PUSH_PULL; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -682,9 +682,9 @@ void TRANSFORM_OT_shrink_fatten(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Shrink/Fatten"; + ot->name= "Shrink/Fatten"; ot->description= "Shrink/fatten selected vertices along normals"; - ot->idname = OP_SHRINK_FATTEN; + ot->idname= OP_SHRINK_FATTEN; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -702,10 +702,10 @@ void TRANSFORM_OT_tosphere(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "To Sphere"; + ot->name= "To Sphere"; //added "around mesh center" to differentiate between "MESH_OT_vertices_to_sphere()" ot->description= "Move selected vertices outward in a spherical shape around mesh center"; - ot->idname = OP_TOSPHERE; + ot->idname= OP_TOSPHERE; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -723,9 +723,9 @@ void TRANSFORM_OT_mirror(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Mirror"; + ot->name= "Mirror"; ot->description= "Mirror selected vertices around one or more axes"; - ot->idname = OP_MIRROR; + ot->idname= OP_MIRROR; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -741,9 +741,9 @@ void TRANSFORM_OT_edge_slide(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Edge Slide"; + ot->name= "Edge Slide"; ot->description= "Slide an edge loop along a mesh"; - ot->idname = OP_EDGE_SLIDE; + ot->idname= OP_EDGE_SLIDE; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -761,9 +761,9 @@ void TRANSFORM_OT_edge_crease(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Edge Crease"; + ot->name= "Edge Crease"; ot->description= "Change the crease of edges"; - ot->idname = OP_EDGE_CREASE; + ot->idname= OP_EDGE_CREASE; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -781,9 +781,9 @@ void TRANSFORM_OT_seq_slide(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Sequence Slide"; + ot->name= "Sequence Slide"; ot->description= "Slide a sequence strip in time"; - ot->idname = OP_SEQ_SLIDE; + ot->idname= OP_SEQ_SLIDE; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ @@ -803,9 +803,9 @@ PropertyRNA *prop; /* identifiers */ - ot->name = "Transform"; + ot->name= "Transform"; ot->description= "Transform selected items by mode type"; - ot->idname = "TRANSFORM_OT_transform"; + ot->idname= "TRANSFORM_OT_transform"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* api callbacks */ Index: source/blender/editors/uvedit/uvedit_smart_stitch.c =================================================================== --- source/blender/editors/uvedit/uvedit_smart_stitch.c (revision 45069) +++ source/blender/editors/uvedit/uvedit_smart_stitch.c (working copy) @@ -1441,9 +1441,9 @@ PropertyRNA *prop; /* identifiers */ - ot->name = "Stitch"; - ot->description = "Stitch selected UV vertices by proximity"; - ot->idname = "UV_OT_stitch"; + ot->name= "Stitch"; + ot->description= "Stitch selected UV vertices by proximity"; + ot->idname= "UV_OT_stitch"; ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* api callbacks */ Index: source/blender/editors/uvedit/uvedit_unwrap_ops.c =================================================================== --- source/blender/editors/uvedit/uvedit_unwrap_ops.c (revision 45069) +++ source/blender/editors/uvedit/uvedit_unwrap_ops.c (working copy) @@ -687,7 +687,7 @@ ot->name= "Minimize Stretch"; ot->idname= "UV_OT_minimize_stretch"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_GRAB_POINTER|OPTYPE_BLOCKING; - ot->description="Reduce UV stretching by relaxing angles"; + ot->description= "Reduce UV stretching by relaxing angles"; /* api callbacks */ ot->exec= minimize_stretch_exec; Index: source/blender/python/intern/bpy_operator_wrap.c =================================================================== --- source/blender/python/intern/bpy_operator_wrap.c (revision 45069) +++ source/blender/python/intern/bpy_operator_wrap.c (working copy) @@ -86,9 +86,9 @@ wmOperatorType *data = (wmOperatorType *)userdata; /* only copy a couple of things, the rest is set by the macro registration */ - ot->name = data->name; - ot->idname = data->idname; - ot->description = data->description; + ot->name= data->name; + ot->idname= data->idname; + ot->description= data->description; ot->flag |= data->flag; /* append flags to the one set by registration */ ot->pyop_poll = data->pyop_poll; ot->ui = data->ui; Index: source/blender/windowmanager/intern/wm_operators.c =================================================================== --- source/blender/windowmanager/intern/wm_operators.c (revision 45069) +++ source/blender/windowmanager/intern/wm_operators.c (working copy) @@ -1463,6 +1463,7 @@ { ot->name= "Search Menu"; ot->idname= "WM_OT_search_menu"; + ot->description= ""; ot->invoke= wm_search_menu_invoke; ot->exec= wm_search_menu_exec; @@ -1483,6 +1484,7 @@ { ot->name= "Call Menu"; ot->idname= "WM_OT_call_menu"; + ot->description= ""; ot->exec= wm_call_menu_exec; ot->poll= WM_operator_winactive; @@ -1510,7 +1512,7 @@ { ot->name= "Duplicate Window"; ot->idname= "WM_OT_window_duplicate"; - ot->description="Duplicate the current Blender window"; + ot->description= "Duplicate the current Blender window"; ot->exec= wm_window_duplicate_exec; ot->poll= wm_operator_winactive_normal; @@ -1520,7 +1522,7 @@ { ot->name= "Save User Settings"; ot->idname= "WM_OT_save_homefile"; - ot->description="Make the current file the default .blend file"; + ot->description= "Make the current file the default .blend file"; ot->invoke= WM_operator_confirm; ot->exec= WM_write_homefile; @@ -1531,7 +1533,7 @@ { ot->name= "Reload Start-Up File"; ot->idname= "WM_OT_read_homefile"; - ot->description="Open the default file (doesn't save the current file)"; + ot->description= "Open the default file (doesn't save the current file)"; ot->invoke= WM_operator_confirm; ot->exec= WM_read_homefile_exec; @@ -1542,7 +1544,7 @@ { ot->name= "Load Factory Settings"; ot->idname= "WM_OT_read_factory_settings"; - ot->description="Load default file and user preferences"; + ot->description= "Load default file and user preferences"; ot->invoke= WM_operator_confirm; ot->exec= WM_read_homefile_exec; @@ -1625,7 +1627,7 @@ { ot->name= "Open Blender File"; ot->idname= "WM_OT_open_mainfile"; - ot->description="Open a Blender file"; + ot->description= "Open a Blender file"; ot->invoke= wm_open_mainfile_invoke; ot->exec= wm_open_mainfile_exec; @@ -1858,7 +1860,7 @@ { ot->name= "Recover Last Session"; ot->idname= "WM_OT_recover_last_session"; - ot->description="Open the last closed file (\"quit.blend\")"; + ot->description= "Open the last closed file (\"quit.blend\")"; ot->exec= wm_recover_last_session_exec; ot->poll= WM_operator_winactive; @@ -1901,7 +1903,7 @@ { ot->name= "Recover Auto Save"; ot->idname= "WM_OT_recover_auto_save"; - ot->description="Open an automatically saved file to recover it"; + ot->description= "Open an automatically saved file to recover it"; ot->exec= wm_recover_auto_save_exec; ot->invoke= wm_recover_auto_save_invoke; @@ -2020,7 +2022,7 @@ { ot->name= "Save As Blender File"; ot->idname= "WM_OT_save_as_mainfile"; - ot->description="Save the current file in the desired location"; + ot->description= "Save the current file in the desired location"; ot->invoke= wm_save_as_mainfile_invoke; ot->exec= wm_save_as_mainfile_exec; @@ -2087,7 +2089,7 @@ { ot->name= "Save Blender File"; ot->idname= "WM_OT_save_mainfile"; - ot->description="Save the current Blender file"; + ot->description= "Save the current Blender file"; ot->invoke= wm_save_mainfile_invoke; ot->exec= wm_save_as_mainfile_exec; @@ -2144,6 +2146,7 @@ { ot->name= "Export COLLADA"; ot->idname= "WM_OT_collada_export"; + ot->description= ""; ot->invoke= wm_collada_export_invoke; ot->exec= wm_collada_export_exec; @@ -2178,6 +2181,7 @@ { ot->name= "Import COLLADA"; ot->idname= "WM_OT_collada_import"; + ot->description= ""; ot->invoke= WM_operator_filesel; ot->exec= wm_collada_import_exec; @@ -2195,7 +2199,7 @@ { ot->name= "Toggle Fullscreen"; ot->idname= "WM_OT_window_fullscreen_toggle"; - ot->description="Toggle the current window fullscreen"; + ot->description= "Toggle the current window fullscreen"; ot->exec= wm_window_fullscreen_toggle_exec; ot->poll= WM_operator_winactive; @@ -2520,7 +2524,7 @@ { ot->name= "Circle Gesture"; ot->idname= "WM_OT_circle_gesture"; - ot->description="Enter rotate mode with a circular gesture"; + ot->description= "Enter rotate mode with a circular gesture"; ot->invoke= WM_gesture_circle_invoke; ot->modal= WM_gesture_circle_modal; @@ -2766,7 +2770,7 @@ ot->name= "Lasso Gesture"; ot->idname= "WM_OT_lasso_gesture"; - ot->description="Select objects within the lasso as you move the pointer"; + ot->description= "Select objects within the lasso as you move the pointer"; ot->invoke= WM_gesture_lasso_invoke; ot->modal= WM_gesture_lasso_modal; @@ -2880,7 +2884,7 @@ ot->name= "Straight Line Gesture"; ot->idname= "WM_OT_straightline_gesture"; - ot->description="Draw a straight line as you move the pointer"; + ot->description= "Draw a straight line as you move the pointer"; ot->invoke= WM_gesture_straightline_invoke; ot->modal= WM_gesture_straightline_modal; @@ -3385,6 +3389,7 @@ { ot->name= "Radial Control"; ot->idname= "WM_OT_radial_control"; + ot->description= ""; ot->invoke= radial_control_invoke; ot->modal= radial_control_modal; @@ -3527,7 +3532,7 @@ { ot->name= "Redraw Timer"; ot->idname= "WM_OT_redraw_timer"; - ot->description="Simple redraw timer to test the speed of updating the interface"; + ot->description= "Simple redraw timer to test the speed of updating the interface"; ot->invoke= WM_menu_invoke; ot->exec= redraw_timer_exec; @@ -3612,7 +3617,7 @@ { ot->name= "Change NDOF sensitivity"; ot->idname= "WM_OT_ndof_sensitivity_change"; - ot->description="Change NDOF sensitivity"; + ot->description= "Change NDOF sensitivity"; ot->exec= wm_ndof_sensitivity_exec;