Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/space_text/text_ops.c')
-rw-r--r--source/blender/editors/space_text/text_ops.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c
index f98c5bf17dd..fb1fed6b175 100644
--- a/source/blender/editors/space_text/text_ops.c
+++ b/source/blender/editors/space_text/text_ops.c
@@ -1157,11 +1157,11 @@ static int clear_all_markers_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-void TEXT_OT_clear_all_markers(wmOperatorType *ot)
+void TEXT_OT_markers_clear(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Clear All Markers";
- ot->idname= "TEXT_OT_clear_all_markers";
+ ot->idname= "TEXT_OT_markers_clear";
/* api callbacks */
ot->exec= clear_all_markers_exec;
@@ -1573,11 +1573,11 @@ static int toggle_overwrite_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-void TEXT_OT_toggle_overwrite(wmOperatorType *ot)
+void TEXT_OT_overwrite_toggle(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Toggle Overwrite";
- ot->idname= "TEXT_OT_toggle_overwrite";
+ ot->idname= "TEXT_OT_overwrite_toggle";
/* api callbacks */
ot->exec= toggle_overwrite_exec;
@@ -2038,11 +2038,11 @@ static int set_cursor_cancel(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-void TEXT_OT_set_cursor(wmOperatorType *ot)
+void TEXT_OT_cursor_set(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Set Cursor";
- ot->idname= "TEXT_OT_set_cursor";
+ ot->idname= "TEXT_OT_cursor_set";
/* api callbacks */
ot->invoke= set_cursor_invoke;