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
aec33ea6
Commit
aec33ea6
authored
Oct 22, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove read-only field p_callback_data
parent
35c8b6fe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
include/vlc_configuration.h
include/vlc_configuration.h
+0
-1
src/config/core.c
src/config/core.c
+1
-2
No files found.
include/vlc_configuration.h
View file @
aec33ea6
...
@@ -157,7 +157,6 @@ struct module_config_t
...
@@ -157,7 +157,6 @@ struct module_config_t
/* Function to call when commiting a change */
/* Function to call when commiting a change */
vlc_callback_t
pf_callback
;
vlc_callback_t
pf_callback
;
void
*
p_callback_data
;
/* Values list */
/* Values list */
char
**
ppsz_list
;
/* List of possible values for the option */
char
**
ppsz_list
;
/* List of possible values for the option */
...
...
src/config/core.c
View file @
aec33ea6
...
@@ -294,8 +294,7 @@ void config_PutPsz( vlc_object_t *p_this,
...
@@ -294,8 +294,7 @@ void config_PutPsz( vlc_object_t *p_this,
vlc_value_t
val
;
vlc_value_t
val
;
val
.
psz_string
=
(
char
*
)
psz_value
;
val
.
psz_string
=
(
char
*
)
psz_value
;
p_config
->
pf_callback
(
p_this
,
psz_name
,
oldval
,
val
,
p_config
->
pf_callback
(
p_this
,
psz_name
,
oldval
,
val
,
NULL
);
p_config
->
p_callback_data
);
}
}
/* free old string */
/* free old string */
...
...
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