Commit 5390ac24 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix typo: Hidding -> Hiding

parent d0dc1be9
......@@ -1300,7 +1300,7 @@ static es_out_id_t *EsOutAdd( es_out_t *p_out, const es_format_t *p_fmt )
break;
}
if( fmt.i_priority < 0 )
msg_Dbg( p_demux, "Hidding one stream (pid=%d)", fmt.i_id );
msg_Dbg( p_demux, "Hiding one stream (pid=%d)", fmt.i_id );
/* */
es_out_id_t *p_es = es_out_Add( p_demux->out, &fmt );
......
......@@ -79,7 +79,7 @@ struct intf_sys_t
vlc_mutex_t lock;
vlc_cond_t wait;
bool is_hidding_noaction_dialogs;
bool is_hiding_noaction_dialogs;
};
......@@ -126,7 +126,7 @@ int OpenIntf(vlc_object_t *p_this)
[p_intf->p_sys->displayer setIntf:p_intf];
bool hide = var_CreateGetBool(p_intf, prefix "hide-no-user-action-dialogs");
p_intf->p_sys->is_hidding_noaction_dialogs = hide;
p_intf->p_sys->is_hiding_noaction_dialogs = hide;
/* subscribe to various interactive dialogues */
......@@ -169,7 +169,7 @@ void CloseIntf(vlc_object_t *p_this)
/* unsubscribe from the interactive dialogues */
dialog_Unregister(p_intf);
if (!p_intf->p_sys->is_hidding_noaction_dialogs)
if (!p_intf->p_sys->is_hiding_noaction_dialogs)
{
var_DelCallback(p_intf,"dialog-error",DisplayError,p_intf);
var_DelCallback(p_intf,"dialog-critical",DisplayCritical,p_intf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment