Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
384f1ef4
Commit
384f1ef4
authored
Aug 01, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apparently, someone does not about "make".
parent
d0733993
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
src/interface/interaction.c
src/interface/interaction.c
+10
-10
No files found.
src/interface/interaction.c
View file @
384f1ef4
...
...
@@ -227,9 +227,9 @@ void intf_InteractionManage( playlist_t *p_playlist )
sizeof( interaction_dialog_t ) ); \
new->psz_title = NULL; \
new->psz_description = NULL; \
new->psz_default
B
utton = NULL; \
new->psz_alternate
B
utton = NULL; \
new->psz_other
B
utton = NULL; \
new->psz_default
_b
utton = NULL; \
new->psz_alternate
_b
utton = NULL; \
new->psz_other
_b
utton = NULL; \
new->i_timeToGo = 0; \
new->b_cancelled = VLC_FALSE; \
new->p_private = NULL; \
...
...
@@ -323,12 +323,12 @@ int __intf_UserYesNo( vlc_object_t *p_this,
p_new
->
psz_title
=
strdup
(
psz_title
);
p_new
->
psz_description
=
strdup
(
psz_description
);
p_new
->
i_flags
=
DIALOG_YES_NO_CANCEL
;
p_new
->
psz_default
B
utton
=
strdup
(
psz_default
);
p_new
->
psz_alternate
B
utton
=
strdup
(
psz_alternate
);
p_new
->
psz_default
_b
utton
=
strdup
(
psz_default
);
p_new
->
psz_alternate
_b
utton
=
strdup
(
psz_alternate
);
if
(
psz_other
)
p_new
->
psz_other
B
utton
=
strdup
(
psz_other
);
p_new
->
psz_other
_b
utton
=
strdup
(
psz_other
);
else
p_new
->
psz_other
B
utton
=
NULL
;
p_new
->
psz_other
_b
utton
=
NULL
;
i_ret
=
intf_Interact
(
p_this
,
p_new
);
...
...
@@ -766,9 +766,9 @@ static void intf_InteractionDialogDestroy( interaction_dialog_t *p_dialog )
{
FREE
(
p_dialog
->
psz_title
);
FREE
(
p_dialog
->
psz_description
);
FREE
(
p_dialog
->
psz_default
B
utton
);
FREE
(
p_dialog
->
psz_alternate
B
utton
);
FREE
(
p_dialog
->
psz_other
B
utton
);
FREE
(
p_dialog
->
psz_default
_b
utton
);
FREE
(
p_dialog
->
psz_alternate
_b
utton
);
FREE
(
p_dialog
->
psz_other
_b
utton
);
free
(
p_dialog
);
}
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