summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/ConferenceManagerPresenter.java
diff options
context:
space:
mode:
Diffstat (limited to 'InCallUI/src/com/android/incallui/ConferenceManagerPresenter.java')
-rw-r--r--InCallUI/src/com/android/incallui/ConferenceManagerPresenter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/InCallUI/src/com/android/incallui/ConferenceManagerPresenter.java b/InCallUI/src/com/android/incallui/ConferenceManagerPresenter.java
index ba01e7597..269f37d9c 100644
--- a/InCallUI/src/com/android/incallui/ConferenceManagerPresenter.java
+++ b/InCallUI/src/com/android/incallui/ConferenceManagerPresenter.java
@@ -18,7 +18,7 @@ package com.android.incallui;
import android.content.Context;
import android.net.Uri;
-import android.telecomm.PhoneCapabilities;
+import android.telecom.PhoneCapabilities;
import android.text.TextUtils;
import com.android.incallui.ContactInfoCache.ContactCacheEntry;
@@ -166,13 +166,13 @@ public class ConferenceManagerPresenter
public void separateConferenceConnection(int rowId) {
if (rowId < mCallerIds.length) {
- TelecommAdapter.getInstance().separateCall(mCallerIds[rowId]);
+ TelecomAdapter.getInstance().separateCall(mCallerIds[rowId]);
}
}
public void endConferenceConnection(int rowId) {
if (rowId < mCallerIds.length) {
- TelecommAdapter.getInstance().disconnectCall(mCallerIds[rowId]);
+ TelecomAdapter.getInstance().disconnectCall(mCallerIds[rowId]);
}
}