Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
5390ac24
Commit
5390ac24
authored
Sep 20, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo: Hidding -> Hiding
parent
d0dc1be9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/access/bd/bd.c
modules/access/bd/bd.c
+1
-1
modules/gui/macosx_dialog_provider/dialogProvider.m
modules/gui/macosx_dialog_provider/dialogProvider.m
+3
-3
No files found.
modules/access/bd/bd.c
View file @
5390ac24
...
@@ -1300,7 +1300,7 @@ static es_out_id_t *EsOutAdd( es_out_t *p_out, const es_format_t *p_fmt )
...
@@ -1300,7 +1300,7 @@ static es_out_id_t *EsOutAdd( es_out_t *p_out, const es_format_t *p_fmt )
break
;
break
;
}
}
if
(
fmt
.
i_priority
<
0
)
if
(
fmt
.
i_priority
<
0
)
msg_Dbg
(
p_demux
,
"Hid
d
ing 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
);
es_out_id_t
*
p_es
=
es_out_Add
(
p_demux
->
out
,
&
fmt
);
...
...
modules/gui/macosx_dialog_provider/dialogProvider.m
View file @
5390ac24
...
@@ -79,7 +79,7 @@ struct intf_sys_t
...
@@ -79,7 +79,7 @@ struct intf_sys_t
vlc_mutex_t
lock
;
vlc_mutex_t
lock
;
vlc_cond_t
wait
;
vlc_cond_t
wait
;
bool
is_hid
d
ing_noaction_dialogs
;
bool
is_hiding_noaction_dialogs
;
};
};
...
@@ -126,7 +126,7 @@ int OpenIntf(vlc_object_t *p_this)
...
@@ -126,7 +126,7 @@ int OpenIntf(vlc_object_t *p_this)
[
p_intf
->
p_sys
->
displayer
setIntf
:
p_intf
];
[
p_intf
->
p_sys
->
displayer
setIntf
:
p_intf
];
bool
hide
=
var_CreateGetBool
(
p_intf
,
prefix
"hide-no-user-action-dialogs"
);
bool
hide
=
var_CreateGetBool
(
p_intf
,
prefix
"hide-no-user-action-dialogs"
);
p_intf
->
p_sys
->
is_hid
d
ing_noaction_dialogs
=
hide
;
p_intf
->
p_sys
->
is_hiding_noaction_dialogs
=
hide
;
/* subscribe to various interactive dialogues */
/* subscribe to various interactive dialogues */
...
@@ -169,7 +169,7 @@ void CloseIntf(vlc_object_t *p_this)
...
@@ -169,7 +169,7 @@ void CloseIntf(vlc_object_t *p_this)
/* unsubscribe from the interactive dialogues */
/* unsubscribe from the interactive dialogues */
dialog_Unregister
(
p_intf
);
dialog_Unregister
(
p_intf
);
if
(
!
p_intf
->
p_sys
->
is_hid
d
ing_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-error"
,
DisplayError
,
p_intf
);
var_DelCallback
(
p_intf
,
"dialog-critical"
,
DisplayCritical
,
p_intf
);
var_DelCallback
(
p_intf
,
"dialog-critical"
,
DisplayCritical
,
p_intf
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment