Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
78e91e55
Commit
78e91e55
authored
Aug 18, 2014
by
Felix Paul Kühne
Browse files
macosx: compilation fix for earlier clang releases and runtime fix for 10.6
parent
6b3d8f33
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/macosx/playlist.m
View file @
78e91e55
...
...
@@ -209,13 +209,13 @@
NSArray
*
columns
=
[
o_outline_view
tableColumns
];
NSUInteger
count
=
columns
.
count
;
for
(
NSUInteger
x
=
0
;
x
<
count
;
x
++
)
[[
columns
[
x
]
dataCell
]
setFont
:
fontToUse
];
[[
[
columns
objectAtIndex
:
x
]
dataCell
]
setFont
:
fontToUse
];
[
o_outline_view
setRowHeight
:
rowHeight
];
columns
=
[
o_outline_view_other
tableColumns
];
count
=
columns
.
count
;
for
(
NSUInteger
x
=
0
;
x
<
count
;
x
++
)
[[
columns
[
x
]
dataCell
]
setFont
:
fontToUse
];
[[
[
columns
objectAtIndex
:
x
]
dataCell
]
setFont
:
fontToUse
];
[
o_outline_view_other
setRowHeight
:
rowHeight
];
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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