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:
authorJoshua Leung <aligorith@gmail.com>2008-12-26 14:33:41 +0300
committerJoshua Leung <aligorith@gmail.com>2008-12-26 14:33:41 +0300
commit1d176259cbc8d6eb2658a9dd0b337f9768fc02c4 (patch)
tree518ddd0a148f9c7b8d3ec594584ad52ee0f81b41 /source/blender/editors/space_action/action_select.c
parentc0475a785931ed0c5690ca5b3f6f5fa2db0ec237 (diff)
2.5 -
Renaming operators to follow new naming convention set out by Ton
Diffstat (limited to 'source/blender/editors/space_action/action_select.c')
-rw-r--r--source/blender/editors/space_action/action_select.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c
index cd454388a57..de41b7e4604 100644
--- a/source/blender/editors/space_action/action_select.c
+++ b/source/blender/editors/space_action/action_select.c
@@ -401,11 +401,11 @@ static int actkeys_deselectall_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-void ED_ACT_OT_keyframes_deselectall (wmOperatorType *ot)
+void ACT_OT_keyframes_deselectall (wmOperatorType *ot)
{
/* identifiers */
ot->name= "Select All";
- ot->idname= "ED_ACT_OT_keyframes_deselectall";
+ ot->idname= "ACT_OT_keyframes_deselectall";
/* api callbacks */
ot->exec= actkeys_deselectall_exec;
@@ -564,11 +564,11 @@ static int actkeys_borderselect_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-void ED_ACT_OT_keyframes_borderselect(wmOperatorType *ot)
+void ACT_OT_keyframes_borderselect(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Border Select";
- ot->idname= "ED_ACT_OT_keyframes_borderselect";
+ ot->idname= "ACT_OT_keyframes_borderselect";
/* api callbacks */
ot->invoke= WM_border_select_invoke;
@@ -797,13 +797,13 @@ static int actkeys_columnselect_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-void ED_ACT_OT_keyframes_columnselect (wmOperatorType *ot)
+void ACT_OT_keyframes_columnselect (wmOperatorType *ot)
{
PropertyRNA *prop;
/* identifiers */
ot->name= "Select All";
- ot->idname= "ED_ACT_OT_keyframes_columnselect";
+ ot->idname= "ACT_OT_keyframes_columnselect";
/* api callbacks */
ot->exec= actkeys_columnselect_exec;
@@ -1172,13 +1172,13 @@ static int actkeys_clickselect_invoke(bContext *C, wmOperator *op, wmEvent *even
return OPERATOR_FINISHED;
}
-void ED_ACT_OT_keyframes_clickselect (wmOperatorType *ot)
+void ACT_OT_keyframes_clickselect (wmOperatorType *ot)
{
PropertyRNA *prop;
/* identifiers */
ot->name= "Mouse Select Keys";
- ot->idname= "ED_ACT_OT_keyframes_clickselect";
+ ot->idname= "ACT_OT_keyframes_clickselect";
/* api callbacks */
ot->invoke= actkeys_clickselect_invoke;