[vlc-commits] Fix typo: Hidding -> Hiding

Jean-Baptiste Kempf git at videolan.org
Tue Sep 20 17:49:20 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Sep 20 17:48:59 2011 +0200| [5390ac24f68294054c9fba564bbe153a4f48c6f0] | committer: Jean-Baptiste Kempf

Fix typo: Hidding -> Hiding

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5390ac24f68294054c9fba564bbe153a4f48c6f0
---

 modules/access/bd/bd.c                             |    2 +-
 .../gui/macosx_dialog_provider/dialogProvider.m    |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/access/bd/bd.c b/modules/access/bd/bd.c
index 05c9232..536d011 100644
--- a/modules/access/bd/bd.c
+++ b/modules/access/bd/bd.c
@@ -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 );
diff --git a/modules/gui/macosx_dialog_provider/dialogProvider.m b/modules/gui/macosx_dialog_provider/dialogProvider.m
index 4e24853..1605740 100644
--- a/modules/gui/macosx_dialog_provider/dialogProvider.m
+++ b/modules/gui/macosx_dialog_provider/dialogProvider.m
@@ -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);



More information about the vlc-commits mailing list