Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
9de73f42
Commit
9de73f42
authored
Dec 12, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings
parent
de198bc7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
modules/gui/wxwindows/playlist.cpp
modules/gui/wxwindows/playlist.cpp
+0
-1
modules/gui/wxwindows/preferences_widgets.cpp
modules/gui/wxwindows/preferences_widgets.cpp
+3
-3
No files found.
modules/gui/wxwindows/playlist.cpp
View file @
9de73f42
...
...
@@ -449,7 +449,6 @@ void Playlist::UpdateNode( playlist_t *p_playlist, playlist_item_t *p_node,
void
Playlist
::
CreateNode
(
playlist_t
*
p_playlist
,
playlist_item_t
*
p_node
,
wxTreeItemId
parent
)
{
long
cookie
;
wxTreeItemId
node
=
treectrl
->
AppendItem
(
parent
,
wxL2U
(
p_node
->
input
.
psz_name
),
-
1
,
-
1
,
new
PlaylistItem
(
p_node
)
);
...
...
modules/gui/wxwindows/preferences_widgets.cpp
View file @
9de73f42
...
...
@@ -268,7 +268,7 @@ ModuleConfigControl::ModuleConfigControl( vlc_object_t *p_this,
p_list
=
vlc_list_find
(
p_this
,
VLC_OBJECT_MODULE
,
FIND_ANYWHERE
);
combo
->
Append
(
wxU
(
_
(
"Default"
)),
(
void
*
)
NULL
);
combo
->
SetSelection
(
0
);
for
(
unsigned
int
i_index
=
0
;
i_index
<
p_list
->
i_count
;
i_index
++
)
for
(
int
i_index
=
0
;
i_index
<
p_list
->
i_count
;
i_index
++
)
{
p_parser
=
(
module_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
...
...
@@ -327,7 +327,7 @@ ModuleListCatConfigControl::ModuleListCatConfigControl( vlc_object_t *p_this,
/* build a list of available modules */
p_list
=
vlc_list_find
(
p_this
,
VLC_OBJECT_MODULE
,
FIND_ANYWHERE
);
for
(
unsigned
int
i_index
=
0
;
i_index
<
p_list
->
i_count
;
i_index
++
)
for
(
int
i_index
=
0
;
i_index
<
p_list
->
i_count
;
i_index
++
)
{
p_parser
=
(
module_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
...
...
@@ -380,7 +380,7 @@ wxString ModuleListCatConfigControl::GetPszValue()
void
ModuleListCatConfigControl
::
OnUpdate
(
wxCommandEvent
&
event
)
{
wxString
newtext
=
wxU
(
""
);
for
(
int
i
=
0
;
i
<
pp_checkboxes
.
size
()
;
i
++
)
for
(
unsigned
int
i
=
0
;
i
<
pp_checkboxes
.
size
()
;
i
++
)
{
if
(
pp_checkboxes
[
i
]
->
checkbox
->
IsChecked
()
)
{
...
...
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