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
4c34dd94
Commit
4c34dd94
authored
Jan 28, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ncurses: removes useless unused parameter warnings, mvhline()->mvwhline()
parent
656fa1a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/gui/ncurses.c
modules/gui/ncurses.c
+4
-2
No files found.
modules/gui/ncurses.c
View file @
4c34dd94
...
...
@@ -2203,6 +2203,8 @@ static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
static
int
PlaylistChanged
(
vlc_object_t
*
p_this
,
const
char
*
psz_variable
,
vlc_value_t
oval
,
vlc_value_t
nval
,
void
*
param
)
{
VLC_UNUSED
(
p_this
);
VLC_UNUSED
(
psz_variable
);
VLC_UNUSED
(
oval
);
VLC_UNUSED
(
nval
);
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
param
;
playlist_t
*
p_playlist
=
pl_Get
(
p_intf
);
p_intf
->
p_sys
->
b_need_update
=
VLC_TRUE
;
...
...
@@ -2542,7 +2544,7 @@ static void DrawEmptyLine( WINDOW *win, int y, int x, int w )
{
if
(
w
>
0
)
{
mv
hline
(
y
,
x
,
' '
,
w
);
mv
whline
(
win
,
y
,
x
,
' '
,
w
);
}
}
...
...
@@ -2551,7 +2553,7 @@ static void DrawLine( WINDOW *win, int y, int x, int w )
if
(
w
>
0
)
{
attrset
(
A_REVERSE
);
mv
hline
(
y
,
x
,
' '
,
w
);
mv
whline
(
win
,
y
,
x
,
' '
,
w
);
attroff
(
A_REVERSE
);
}
}
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