Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Ewout ter Hoeven
VLC-Android
Commits
2c7f2e7a
Commit
2c7f2e7a
authored
Oct 02, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename method to avoid confusing between getter and setter
parent
53a01610
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
vlc-android/src/org/videolan/vlc/LibVLC.java
vlc-android/src/org/videolan/vlc/LibVLC.java
+1
-2
vlc-android/src/org/videolan/vlc/gui/PreferencesActivity.java
...android/src/org/videolan/vlc/gui/PreferencesActivity.java
+1
-1
No files found.
vlc-android/src/org/videolan/vlc/LibVLC.java
View file @
2c7f2e7a
...
...
@@ -23,7 +23,6 @@ package org.videolan.vlc;
import
java.util.ArrayList
;
import
org.videolan.vlc.gui.video.VideoPlayerActivity
;
import
org.videolan.vlc.LibVlcException
;
import
android.content.Context
;
import
android.content.SharedPreferences
;
...
...
@@ -147,7 +146,7 @@ public class LibVLC {
return
sUseIomx
;
}
public
static
synchronized
void
u
seIOMX
(
boolean
enable
)
{
public
static
synchronized
void
se
t
IOMX
(
boolean
enable
)
{
sUseIomx
=
enable
;
}
...
...
vlc-android/src/org/videolan/vlc/gui/PreferencesActivity.java
View file @
2c7f2e7a
...
...
@@ -112,7 +112,7 @@ public class PreferencesActivity extends PreferenceActivity {
@Override
public
boolean
onPreferenceClick
(
Preference
preference
)
{
CheckBoxPreference
checkboxHW
=
(
CheckBoxPreference
)
preference
;
LibVLC
.
u
seIOMX
(
checkboxHW
.
isChecked
());
LibVLC
.
se
t
IOMX
(
checkboxHW
.
isChecked
());
return
true
;
}
});
...
...
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