reveil -> reveal

This commit is contained in:
2009-02-12 03:48:56 +00:00
parent b96180ec17
commit a5f26d4c14
6 changed files with 10 additions and 10 deletions

View File

@@ -45,7 +45,7 @@ void ARMATURE_OT_de_select_all(struct wmOperatorType *ot);
void ARMATURE_OT_selection_invert(struct wmOperatorType *ot);
void POSE_OT_hide(struct wmOperatorType *ot);
void POSE_OT_reveil(struct wmOperatorType *ot);
void POSE_OT_reveal(struct wmOperatorType *ot);
void POSE_OT_rot_clear(struct wmOperatorType *ot);
void POSE_OT_loc_clear(struct wmOperatorType *ot);
void POSE_OT_scale_clear(struct wmOperatorType *ot);

View File

@@ -123,7 +123,7 @@ void ED_operatortypes_armature(void)
/* POSE */
WM_operatortype_append(POSE_OT_hide);
WM_operatortype_append(POSE_OT_reveil);
WM_operatortype_append(POSE_OT_reveal);
WM_operatortype_append(POSE_OT_rot_clear);
WM_operatortype_append(POSE_OT_loc_clear);
@@ -170,7 +170,7 @@ void ED_keymap_armature(wmWindowManager *wm)
WM_keymap_add_item(keymap, "POSE_OT_hide", HKEY, KM_PRESS, 0, 0);
kmi= WM_keymap_add_item(keymap, "POSE_OT_hide", HKEY, KM_PRESS, KM_SHIFT, 0);
RNA_boolean_set(kmi->ptr, "invert", 1);
WM_keymap_add_item(keymap, "POSE_OT_reveil", HKEY, KM_PRESS, KM_ALT, 0);
WM_keymap_add_item(keymap, "POSE_OT_reveal", HKEY, KM_PRESS, KM_ALT, 0);
/*clear pose*/
WM_keymap_add_item(keymap, "POSE_OT_rot_clear", RKEY, KM_PRESS, KM_ALT, 0);
WM_keymap_add_item(keymap, "POSE_OT_loc_clear", GKEY, KM_PRESS, KM_ALT, 0);

View File

@@ -4614,7 +4614,7 @@ static int show_pose_bone(Object *ob, Bone *bone, void *ptr)
}
/* active object is armature in posemode, poll checked */
static int pose_reveil_exec(bContext *C, wmOperator *op)
static int pose_reveal_exec(bContext *C, wmOperator *op)
{
Object *ob= CTX_data_active_object(C);
bArmature *arm= ob->data;
@@ -4627,14 +4627,14 @@ static int pose_reveil_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
void POSE_OT_reveil(wmOperatorType *ot)
void POSE_OT_reveal(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Reveil Selection";
ot->idname= "POSE_OT_reveil";
ot->idname= "POSE_OT_reveal";
/* api callbacks */
ot->exec= pose_reveil_exec;
ot->exec= pose_reveal_exec;
ot->poll= ED_operator_posemode;
/* flags */

View File

@@ -702,7 +702,7 @@ static void node_draw_basis(const bContext *C, ARegion *ar, SpaceNode *snode, bN
UI_icon_draw_aspect_blended(iconofs, rct->ymax-NODE_DY+2, ICON_BUTS, snode->aspect, -60);
glDisable(GL_BLEND);
}
{ /* always hide/reveil unused sockets */
{ /* always hide/reveal unused sockets */
int shade;
iconofs-= 18.0f;

View File

@@ -2478,7 +2478,7 @@ void outliner_find_panel(Scene *scene, ARegion *ar, SpaceOops *soops, int again,
// else return; /* XXX RETURN! XXX */
}
/* do selection and reveil */
/* do selection and reveal */
if (te) {
tselem= TREESTORE(te);
if (tselem) {

View File

@@ -116,7 +116,7 @@ typedef struct Library {
ID id;
ID *idblock;
struct FileData *filedata;
char name[240]; /* reveiled in the UI, can store relative path */
char name[240]; /* revealed in the UI, can store relative path */
char filename[240]; /* expanded name, not relative, used while reading */
int tot, pad; /* tot, idblock and filedata are only fo read and write */
struct Library *parent; /* for outliner, showing dependency */