Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
0648c70a
Commit
0648c70a
authored
Mar 18, 2003
by
hartman
Browse files
* 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
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/1
4
0
1
:2
3:06
hartman Exp $
* $Id: info.m,v 1.
5
2003/03/1
8
0
2
:2
8: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/1
7 23:48:26 fenrir
Exp $
* $Id: httpd.c,v 1.1
1
2003/03/1
8 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
Supports
Markdown
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