Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
9649c599
Commit
9649c599
authored
Jun 04, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't check for impossible error involving object types
parent
c3a30a7b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
10 deletions
+3
-10
modules/gui/beos/PreferencesWindow.cpp
modules/gui/beos/PreferencesWindow.cpp
+1
-3
modules/gui/macosx/prefs.m
modules/gui/macosx/prefs.m
+1
-1
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+1
-1
modules/gui/wince/preferences.cpp
modules/gui/wince/preferences.cpp
+0
-5
No files found.
modules/gui/beos/PreferencesWindow.cpp
View file @
9649c599
...
...
@@ -445,11 +445,9 @@ ConfigItem::ConfigItem( intf_thread_t * _p_intf, char * name,
}
}
if
(
!
p_module
||
p_module
->
i_object_type
!=
VLC_OBJECT_MODULE
)
{
if
(
!
p_module
)
/* Shouldn't happen */
return
;
}
module_config_t
*
p_item
;
p_item
=
fSubModule
?
((
module_t
*
)
p_module
->
p_parent
)
->
p_config
:
...
...
modules/gui/macosx/prefs.m
View file @
9649c599
...
...
@@ -552,7 +552,7 @@ static VLCTreeItem *o_root_item = nil;
if
(
i_object_category
==
-
1
)
{
p_parser
=
(
module_t
*
)
vlc_object_get
(
i_object_id
);
if
(
!
p_parser
||
((
vlc_object_t
*
)
p_parser
)
->
i_object_type
!=
VLC_OBJECT_MODULE
)
if
(
!
p_parser
)
{
/* 0OOoo something went really bad */
return
nil
;
...
...
modules/gui/qt4/input_manager.cpp
View file @
9649c599
...
...
@@ -509,7 +509,7 @@ void MainInputManager::customEvent( QEvent *event )
}
/* Should be PLItemChanged Event */
if
(
VLC_OBJECT_INTF
==
p_intf
->
i_object_type
)
if
(
VLC_OBJECT_INTF
==
p_intf
->
i_object_type
)
/* FIXME: don't use object type */
{
vlc_mutex_lock
(
&
p_intf
->
change_lock
);
if
(
p_input
&&
(
p_input
->
b_dead
||
p_input
->
b_die
)
)
...
...
modules/gui/wince/preferences.cpp
View file @
9649c599
...
...
@@ -706,11 +706,6 @@ PrefsPanel::PrefsPanel( HWND parent, HINSTANCE hInst, intf_thread_t *_p_intf,
{
/* Get a pointer to the module */
p_module
=
(
module_t
*
)
vlc_object_get
(
i_object_id
);
if
(
p_module
->
i_object_type
!=
VLC_OBJECT_MODULE
)
{
/* 0OOoo something went really bad */
return
;
}
/* Enumerate config options and add corresponding config boxes
* (submodules don't have config options, they are stored in the
...
...
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