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
eb918f10
Commit
eb918f10
authored
Dec 15, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove code killed by previous commit
parent
773c6cd4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
22 deletions
+0
-22
modules/gui/beos/PreferencesWindow.cpp
modules/gui/beos/PreferencesWindow.cpp
+0
-6
modules/gui/macosx/prefs_widgets.m
modules/gui/macosx/prefs_widgets.m
+0
-5
modules/gui/qt4/components/preferences_widgets.cpp
modules/gui/qt4/components/preferences_widgets.cpp
+0
-1
modules/gui/wince/preferences_widgets.cpp
modules/gui/wince/preferences_widgets.cpp
+0
-4
modules/gui/wxwidgets/dialogs/preferences_widgets.cpp
modules/gui/wxwidgets/dialogs/preferences_widgets.cpp
+0
-6
No files found.
modules/gui/beos/PreferencesWindow.cpp
View file @
eb918f10
...
@@ -614,12 +614,6 @@ ConfigWidget::ConfigWidget( intf_thread_t * _p_intf, BRect rect,
...
@@ -614,12 +614,6 @@ ConfigWidget::ConfigWidget( intf_thread_t * _p_intf, BRect rect,
BRect
r
;
BRect
r
;
BMenuItem
*
menuItem
;
BMenuItem
*
menuItem
;
/* Skip deprecated options */
if
(
p_item
->
psz_current
)
{
fInitOK
=
false
;
return
;
}
fInitOK
=
true
;
fInitOK
=
true
;
...
...
modules/gui/macosx/prefs_widgets.m
View file @
eb918f10
...
@@ -812,11 +812,6 @@
...
@@ -812,11 +812,6 @@
withView
:
(
NSView
*
)
o_parent_view
withView
:
(
NSView
*
)
o_parent_view
{
{
VLCConfigControl
*
p_control
=
NULL
;
VLCConfigControl
*
p_control
=
NULL
;
/* Skip depracated options */
if
(
_p_item
->
psz_current
)
{
return
NULL
;
}
switch
(
_p_item
->
i_type
)
switch
(
_p_item
->
i_type
)
{
{
...
...
modules/gui/qt4/components/preferences_widgets.cpp
View file @
eb918f10
...
@@ -74,7 +74,6 @@ ConfigControl *ConfigControl::createControl( vlc_object_t *p_this,
...
@@ -74,7 +74,6 @@ ConfigControl *ConfigControl::createControl( vlc_object_t *p_this,
QGridLayout
*
l
,
int
&
line
)
QGridLayout
*
l
,
int
&
line
)
{
{
ConfigControl
*
p_control
=
NULL
;
ConfigControl
*
p_control
=
NULL
;
if
(
p_item
->
psz_current
||
p_item
->
b_unsaveable
)
return
NULL
;
switch
(
p_item
->
i_type
)
switch
(
p_item
->
i_type
)
{
{
...
...
modules/gui/wince/preferences_widgets.cpp
View file @
eb918f10
...
@@ -47,10 +47,6 @@ ConfigControl *CreateConfigControl( vlc_object_t *p_this,
...
@@ -47,10 +47,6 @@ ConfigControl *CreateConfigControl( vlc_object_t *p_this,
{
{
ConfigControl
*
p_control
=
NULL
;
ConfigControl
*
p_control
=
NULL
;
if
(
p_item
->
psz_current
)
{
return
NULL
;
}
switch
(
p_item
->
i_type
)
switch
(
p_item
->
i_type
)
{
{
case
CONFIG_ITEM_MODULE
:
case
CONFIG_ITEM_MODULE
:
...
...
modules/gui/wxwidgets/dialogs/preferences_widgets.cpp
View file @
eb918f10
...
@@ -38,12 +38,6 @@ ConfigControl *CreateConfigControl( vlc_object_t *p_this,
...
@@ -38,12 +38,6 @@ ConfigControl *CreateConfigControl( vlc_object_t *p_this,
{
{
ConfigControl
*
p_control
=
NULL
;
ConfigControl
*
p_control
=
NULL
;
/*Skip deprecated options */
if
(
p_item
->
psz_current
||
p_item
->
b_unsaveable
)
{
return
NULL
;
}
switch
(
p_item
->
i_type
)
switch
(
p_item
->
i_type
)
{
{
case
CONFIG_ITEM_MODULE
:
case
CONFIG_ITEM_MODULE
:
...
...
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