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
0648c70a
Commit
0648c70a
authored
Mar 18, 2003
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/macosx/info.m: keep the same panel open if track changes.
* modules/misc/httpd.c: removed an unused int.
parent
a64501fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
modules/gui/macosx/info.m
modules/gui/macosx/info.m
+11
-2
modules/misc/httpd.c
modules/misc/httpd.c
+1
-2
No files found.
modules/gui/macosx/info.m
View file @
0648c70a
...
...
@@ -2,7 +2,7 @@
* info.m: MacOS X info panel
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: info.m,v 1.
4 2003/03/14 01:23:06
hartman Exp $
* $Id: info.m,v 1.
5 2003/03/18 02:28:53
hartman Exp $
*
* Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
*
...
...
@@ -74,10 +74,14 @@
-
(
void
)
updateInfo
{
NSString
*
o_selectedPane
;
if
(
!
[
o_window
isVisible
]
)
{
return
;
}
o_selectedPane
=
[[
o_selector
selectedItem
]
title
];
intf_thread_t
*
p_intf
=
[
NSApp
getIntf
];
playlist_t
*
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
...
...
@@ -113,7 +117,12 @@
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
vlc_object_release
(
p_playlist
);
[
o_selector
selectItemAtIndex
:
0
];
int
i_select
=
[
o_selector
indexOfItemWithTitle
:
o_selectedPane
];
if
(
i_select
<
0
)
{
i_select
=
0
;
}
[
o_selector
selectItemAtIndex
:
i_select
];
[
self
showCategory
:
o_selector
];
}
...
...
modules/misc/httpd.c
View file @
0648c70a
...
...
@@ -2,7 +2,7 @@
* httpd.c
*****************************************************************************
* Copyright (C) 2001-2003 VideoLAN
* $Id: httpd.c,v 1.1
0 2003/03/17 23:48:26 fenrir
Exp $
* $Id: httpd.c,v 1.1
1 2003/03/18 02:28:53 hartman
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -1179,7 +1179,6 @@ static int httpd_page_admin_get( httpd_file_callback_args_t *p_args,
{
httpd_sys_t
*
p_httpt
=
(
httpd_sys_t
*
)
p_args
;
httpd_connection_t
*
p_con
;
int
i
;
if
(
i_request
>
0
)
{
...
...
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