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:
authorCampbell Barton <ideasman42@gmail.com>2012-06-04 21:30:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-04 21:30:54 +0400
commitd46a6dc59c76c4b5f9210aba51f5f6347c7ccd26 (patch)
tree8677eb154960d38fd880d0b62f7c2808b7985664 /source/blender/editors/mask/mask_edit.c
parentc517247fc67b77e451c7e920385beda02a0de524 (diff)
abbreviate mask-editing to mask-edit
Diffstat (limited to 'source/blender/editors/mask/mask_edit.c')
-rw-r--r--source/blender/editors/mask/mask_edit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/mask/mask_edit.c b/source/blender/editors/mask/mask_edit.c
index 7a3f759e471..9a32cff04c3 100644
--- a/source/blender/editors/mask/mask_edit.c
+++ b/source/blender/editors/mask/mask_edit.c
@@ -50,23 +50,23 @@
/********************** generic poll functions *********************/
-int ED_maskediting_poll(bContext *C)
+int ED_maskedit_poll(bContext *C)
{
SpaceClip *sc = CTX_wm_space_clip(C);
if (sc) {
- return ED_space_clip_maskediting_poll(C);
+ return ED_space_clip_maskedit_poll(C);
}
return FALSE;
}
-int ED_maskediting_mask_poll(bContext *C)
+int ED_maskedit_mask_poll(bContext *C)
{
SpaceClip *sc = CTX_wm_space_clip(C);
if (sc) {
- return ED_space_clip_maskediting_mask_poll(C);
+ return ED_space_clip_maskedit_mask_poll(C);
}
return FALSE;
@@ -232,7 +232,7 @@ void ED_keymap_mask(wmKeyConfig *keyconf)
wmKeyMapItem *kmi;
keymap = WM_keymap_find(keyconf, "Mask Editing", 0, 0);
- keymap->poll = ED_maskediting_poll;
+ keymap->poll = ED_maskedit_poll;
WM_keymap_add_item(keymap, "MASK_OT_new", NKEY, KM_PRESS, KM_ALT, 0);