diff options
author | Etan Cohen <etancohen@google.com> | 2015-04-23 12:26:37 -0700 |
---|---|---|
committer | Etan Cohen <etancohen@google.com> | 2015-04-24 14:06:40 -0700 |
commit | 89427249308b7db10e8c3d352b79097f94912b84 (patch) | |
tree | 46535a85285fec1bebb6dbbaf146a48645d40bfd /telecomm | |
parent | 1123a831c42ef540d60b946363c1e263cc8ab8bf (diff) | |
download | frameworks_base-89427249308b7db10e8c3d352b79097f94912b84.zip frameworks_base-89427249308b7db10e8c3d352b79097f94912b84.tar.gz frameworks_base-89427249308b7db10e8c3d352b79097f94912b84.tar.bz2 |
Fix build due to merge of 7595842 and renaming due to 8eb87f0
I.e. rename mVideoCallback -> mCallback. Line with original name
was added in mwd, renaming was done in master. The renaming CL
was cherry-picked to mwd (and build probably fixed there).
Change-Id: I462a0fedd00293a148404e1419740bf492ae5de9
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/android/telecom/VideoCallImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/VideoCallImpl.java b/telecomm/java/android/telecom/VideoCallImpl.java index ba064cf..d1474fa 100644 --- a/telecomm/java/android/telecom/VideoCallImpl.java +++ b/telecomm/java/android/telecom/VideoCallImpl.java @@ -176,7 +176,7 @@ public class VideoCallImpl extends VideoCall { /** {@inheritDoc} */ public void removeVideoCallListener() { - mVideoCallListener = null; + mCallback = null; try { mVideoProvider.removeVideoCallback(mBinder); } catch (RemoteException e) { |