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>2009-06-28 07:13:01 +0400
committerJoshua Leung <aligorith@gmail.com>2009-06-28 07:13:01 +0400
commit61e30f0f001285dcbf0c7ec8ba44151544bfc8d9 (patch)
tree97aafed5df92cfa41cd6039cadfa2a1e4af87786 /source/blender/editors/space_nla/nla_intern.h
parentbc0cd9607e1e2d25f92216332d73c23ef1e7c786 (diff)
NLA SoC: Renamed NLA-Editor operators to be more in line with those in other editors
Diffstat (limited to 'source/blender/editors/space_nla/nla_intern.h')
-rw-r--r--source/blender/editors/space_nla/nla_intern.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/source/blender/editors/space_nla/nla_intern.h b/source/blender/editors/space_nla/nla_intern.h
index 7056139d734..f8df41d6225 100644
--- a/source/blender/editors/space_nla/nla_intern.h
+++ b/source/blender/editors/space_nla/nla_intern.h
@@ -54,7 +54,7 @@
ARegion *nla_has_buttons_region(ScrArea *sa);
void nla_buttons_register(ARegionType *art);
-void NLAEDIT_OT_properties(wmOperatorType *ot);
+void NLA_OT_properties(wmOperatorType *ot);
/* **************************************** */
/* nla_draw.c */
@@ -80,30 +80,30 @@ enum {
/* --- */
-void NLAEDIT_OT_select_all_toggle(wmOperatorType *ot);
-void NLAEDIT_OT_select_border(wmOperatorType *ot);
-void NLAEDIT_OT_click_select(wmOperatorType *ot);
+void NLA_OT_select_all_toggle(wmOperatorType *ot);
+void NLA_OT_select_border(wmOperatorType *ot);
+void NLA_OT_click_select(wmOperatorType *ot);
/* **************************************** */
/* nla_edit.c */
-void NLAEDIT_OT_tweakmode_enter(wmOperatorType *ot);
-void NLAEDIT_OT_tweakmode_exit(wmOperatorType *ot);
+void NLA_OT_tweakmode_enter(wmOperatorType *ot);
+void NLA_OT_tweakmode_exit(wmOperatorType *ot);
/* --- */
-void NLAEDIT_OT_add_actionclip(wmOperatorType *ot);
-void NLAEDIT_OT_add_transition(wmOperatorType *ot);
+void NLA_OT_add_actionclip(wmOperatorType *ot);
+void NLA_OT_add_transition(wmOperatorType *ot);
-void NLAEDIT_OT_duplicate(wmOperatorType *ot);
-void NLAEDIT_OT_delete(wmOperatorType *ot);
-void NLAEDIT_OT_split(wmOperatorType *ot);
+void NLA_OT_duplicate(wmOperatorType *ot);
+void NLA_OT_delete(wmOperatorType *ot);
+void NLA_OT_split(wmOperatorType *ot);
-void NLAEDIT_OT_move_up(wmOperatorType *ot);
-void NLAEDIT_OT_move_down(wmOperatorType *ot);
+void NLA_OT_move_up(wmOperatorType *ot);
+void NLA_OT_move_down(wmOperatorType *ot);
-void NLAEDIT_OT_apply_scale(wmOperatorType *ot);
-void NLAEDIT_OT_clear_scale(wmOperatorType *ot);
+void NLA_OT_apply_scale(wmOperatorType *ot);
+void NLA_OT_clear_scale(wmOperatorType *ot);
/* **************************************** */