Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
b0b4694b
Commit
b0b4694b
authored
May 26, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Search child of playlist rather than anywhere
parent
2f49119c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
8 deletions
+7
-8
modules/gui/macosx/controls.m
modules/gui/macosx/controls.m
+4
-5
modules/gui/macosx/extended.m
modules/gui/macosx/extended.m
+1
-1
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+2
-2
No files found.
modules/gui/macosx/controls.m
View file @
b0b4694b
...
...
@@ -480,10 +480,9 @@
-
(
IBAction
)
telxTransparent
:(
id
)
sender
{
intf_thread_t
*
p_intf
=
VLCIntf
;
vlc_object_t
*
p_vbi
;
p_vbi
=
(
vlc_object_t
*
)
vlc_object_find_name
(
p
_intf
,
"zvbi"
,
FIND_
ANYWHERE
);
p_vbi
=
(
vlc_object_t
*
)
vlc_object_find_name
(
p
l_Get
(
VLCIntf
)
,
"zvbi"
,
FIND_
CHILD
);
if
(
p_vbi
)
{
var_SetBool
(
p_vbi
,
"vbi-opaque"
,
[
sender
state
]
);
...
...
@@ -510,8 +509,8 @@
i_page
=
'b'
<<
16
;
if
(
i_page
==
0
)
return
;
p_vbi
=
(
vlc_object_t
*
)
vlc_object_find_name
(
p
_intf
,
"zvbi"
,
FIND_
ANYWHERE
);
p_vbi
=
(
vlc_object_t
*
)
vlc_object_find_name
(
p
l_Get
(
VLCIntf
)
,
"zvbi"
,
FIND_
CHILD
);
if
(
p_vbi
)
{
var_SetInteger
(
p_vbi
,
"vbi-page"
,
i_page
);
...
...
modules/gui/macosx/extended.m
View file @
b0b4694b
...
...
@@ -352,7 +352,7 @@ static VLCExtended *_o_sharedInstance = nil;
else
{
msg_Dbg
(
p_intf
,
"we found a vout to adjust, let's look for the filter"
);
p_filter
=
vlc_object_find_name
(
p
_intf
,
"adjust"
,
FIND_ANYWHERE
);
p_filter
=
vlc_object_find_name
(
p
l_Get
(
p_intf
),
"adjust"
,
FIND_CHILD
);
if
(
!
p_filter
)
{
...
...
modules/gui/qt4/components/extended_panels.cpp
View file @
b0b4694b
...
...
@@ -686,7 +686,7 @@ void ExtV4l2::showEvent( QShowEvent *event )
void
ExtV4l2
::
Refresh
(
void
)
{
vlc_object_t
*
p_obj
=
(
vlc_object_t
*
)
vlc_object_find_name
(
p
_intf
,
"v4l2"
,
FIND_ANYWHERE
);
vlc_object_t
*
p_obj
=
(
vlc_object_t
*
)
vlc_object_find_name
(
p
l_Get
(
p_intf
),
"v4l2"
,
FIND_CHILD
);
help
->
hide
();
if
(
box
)
{
...
...
@@ -830,7 +830,7 @@ void ExtV4l2::ValueChange( bool value )
void
ExtV4l2
::
ValueChange
(
int
value
)
{
QObject
*
s
=
sender
();
vlc_object_t
*
p_obj
=
(
vlc_object_t
*
)
vlc_object_find_name
(
p
_intf
,
"v4l2"
,
FIND_ANYWHERE
);
vlc_object_t
*
p_obj
=
(
vlc_object_t
*
)
vlc_object_find_name
(
p
l_Get
(
p_intf
),
"v4l2"
,
FIND_CHILD
);
if
(
p_obj
)
{
char
*
psz_var
=
strdup
(
qtu
(
s
->
objectName
()
)
);
...
...
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