diff options
author | daneren2005 <daneren2005@gmail.com> | 2013-11-04 16:53:16 -0800 |
---|---|---|
committer | daneren2005 <daneren2005@gmail.com> | 2013-11-04 16:53:16 -0800 |
commit | ef189890cf2fc4afc8c5736e36d2ef5197d6d791 (patch) | |
tree | c0a960d1030a3684bc59a527d24668f4653d8317 | |
parent | bd3a37cf9967a816457e179b8e313985bee07181 (diff) | |
download | dsub-ef189890cf2fc4afc8c5736e36d2ef5197d6d791.tar.gz dsub-ef189890cf2fc4afc8c5736e36d2ef5197d6d791.tar.bz2 dsub-ef189890cf2fc4afc8c5736e36d2ef5197d6d791.zip |
Forgot to make these protected
-rw-r--r-- | src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java b/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java index 14c6e0b4..a47ecab5 100644 --- a/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java +++ b/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java @@ -15,10 +15,9 @@ import github.daneren2005.dsub.service.DownloadService; @TargetApi(14) public class RemoteControlClientICS extends RemoteControlClientHelper { - - private RemoteControlClient mRemoteControl; - private ImageLoader imageLoader; - private DownloadService downloadService; + protected RemoteControlClient mRemoteControl; + protected ImageLoader imageLoader; + protected DownloadService downloadService; public void register(final Context context, final ComponentName mediaButtonReceiverComponent) { downloadService = (DownloadService) context; |