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
4e1cda09
Commit
4e1cda09
authored
Jan 19, 2003
by
Olivier Teulière
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Compilation fix
parent
4a6a6ea0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/gui/win32/menu.cpp
modules/gui/win32/menu.cpp
+3
-3
No files found.
modules/gui/win32/menu.cpp
View file @
4e1cda09
...
...
@@ -2,7 +2,7 @@
* menu.cpp: functions to handle menu items
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: menu.cpp,v 1.
6 2003/01/17 19:35:22 sam
Exp $
* $Id: menu.cpp,v 1.
7 2003/01/19 17:55:18 ipkiss
Exp $
*
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
*
...
...
@@ -168,7 +168,7 @@ void __fastcall TMenusGen::MenuChapterClick( TObject *Sender )
vlc_mutex_lock
(
&
p_intf
->
p_sys
->
p_input
->
stream
.
stream_lock
);
p_area
=
p_intf
->
p_sys
->
p_input
->
stream
.
p_selected_area
;
i_chapter
=
__MIN
(
i_chapter
,
p_area
->
.
i_part_nb
-
1
);
i_chapter
=
__MIN
(
i_chapter
,
p_area
->
i_part_nb
-
1
);
i_chapter
=
__MAX
(
i_chapter
,
1
);
p_area
->
i_part
=
i_chapter
;
vlc_mutex_unlock
(
&
p_intf
->
p_sys
->
p_input
->
stream
.
stream_lock
);
...
...
@@ -202,7 +202,7 @@ void __fastcall TMenusGen::PopupNavigationClick( TObject *Sender )
p_intf
->
p_sys
->
p_input
->
stream
.
i_area_nb
-
1
);
i_title
=
__MAX
(
i_title
,
1
);
p_area
=
p_intf
->
p_sys
->
p_input
->
stream
.
pp_areas
[
i_title
];
i_chapter
=
__MIN
(
i_chapter
,
p_area
->
.
i_part_nb
-
1
);
i_chapter
=
__MIN
(
i_chapter
,
p_area
->
i_part_nb
-
1
);
i_chapter
=
__MAX
(
i_chapter
,
1
);
p_area
->
i_part
=
i_chapter
;
vlc_mutex_unlock
(
&
p_intf
->
p_sys
->
p_input
->
stream
.
stream_lock
);
...
...
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