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
a1dc0f13
Commit
a1dc0f13
authored
May 11, 2005
by
Jérome Decoodt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use new selectors only if they exist...
parent
d50eaf24
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
modules/gui/macosx/prefs_widgets.m
modules/gui/macosx/prefs_widgets.m
+6
-4
No files found.
modules/gui/macosx/prefs_widgets.m
View file @
a1dc0f13
...
...
@@ -1795,7 +1795,7 @@ if( MACOS_VERSION >= 10.3 ) \
[
o_stepper
setFloatValue
:
[
o_textfield
floatValue
]];
}
-
(
in
t
)
floatValue
-
(
floa
t
)
floatValue
{
return
[
o_stepper
floatValue
];
}
...
...
@@ -1905,7 +1905,7 @@ if( MACOS_VERSION >= 10.3 ) \
[
o_slider
setFloatValue
:
[
o_textfield
floatValue
]];
}
-
(
in
t
)
floatValue
-
(
floa
t
)
floatValue
{
return
[
o_slider
floatValue
];
}
...
...
@@ -2296,11 +2296,13 @@ if( _p_item->i_type == CONFIG_ITEM_MODULE_LIST )
o_scrollview
=
[[[
NSScrollView
alloc
]
initWithFrame
:
s_rc
]
retain
];
[
o_scrollview
setDrawsBackground
:
NO
];
[
o_scrollview
setBorderType
:
NSBezelBorder
];
[
o_scrollview
setAutohidesScrollers
:
YES
];
if
(
MACOS_VERSION
>=
10
.
3
)
[
o_scrollview
setAutohidesScrollers
:
YES
];
NSTableView
*
o_tableview
;
o_tableview
=
[[
NSTableView
alloc
]
initWithFrame
:
s_rc
];
[
o_tableview
setUsesAlternatingRowBackgroundColors
:
YES
];
if
(
MACOS_VERSION
>=
10
.
3
)
[
o_tableview
setUsesAlternatingRowBackgroundColors
:
YES
];
[
o_tableview
setHeaderView
:
nil
];
/* TODO: find a good way to fix the row height and text size*/
/* FIXME: support for multiple selection... */
...
...
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