Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
LibVLCSharp
Commits
15e27be4
Commit
15e27be4
authored
Jul 07, 2020
by
Martin Finkel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core: Fix C# 8 Android build on macOS
parent
402db8a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/LibVLCSharp/Platforms/Android/LayoutChangeListener.cs
src/LibVLCSharp/Platforms/Android/LayoutChangeListener.cs
+1
-1
No files found.
src/LibVLCSharp/Platforms/Android/LayoutChangeListener.cs
View file @
15e27be4
...
...
@@ -31,7 +31,7 @@ namespace LibVLCSharp.Platforms.Android
/// <param name="oldTop">previous top</param>
/// <param name="oldRight">previous right</param>
/// <param name="oldBottom">previous bottom</param>
public
void
OnLayoutChange
(
View
v
,
int
left
,
int
top
,
int
right
,
int
bottom
,
int
oldLeft
,
int
oldTop
,
int
oldRight
,
public
void
OnLayoutChange
(
View
?
v
,
int
left
,
int
top
,
int
right
,
int
bottom
,
int
oldLeft
,
int
oldTop
,
int
oldRight
,
int
oldBottom
)
{
if
(
left
!=
oldLeft
||
top
!=
oldTop
||
right
!=
oldRight
||
bottom
!=
oldBottom
)
...
...
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