summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/PostCharDialogFragment.java
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2014-09-12 22:16:48 -0700
committerTyler Gunn <tgunn@google.com>2014-09-12 22:16:48 -0700
commit4b293f0f08030c97e1bb54d2f79ac2fb1a6e29ae (patch)
tree3d08939fee48787580c0b215084162b578128ea1 /InCallUI/src/com/android/incallui/PostCharDialogFragment.java
parent6861dc525e2caa9ced087e1c11ad0274e6e6ea12 (diff)
Renaming Telecomm to Telecom.
- Changing package from android.telecomm to android.telecom - Changing package from com.android.telecomm to com.android.server.telecomm. - Renaming TelecommManager to TelecomManager. Bug: 17364651 Change-Id: Ie5ae18f51baa5da2eb9793785ad0c9d83b6343d1
Diffstat (limited to 'InCallUI/src/com/android/incallui/PostCharDialogFragment.java')
-rw-r--r--InCallUI/src/com/android/incallui/PostCharDialogFragment.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/InCallUI/src/com/android/incallui/PostCharDialogFragment.java b/InCallUI/src/com/android/incallui/PostCharDialogFragment.java
index 5925acee7..e1edbc75b 100644
--- a/InCallUI/src/com/android/incallui/PostCharDialogFragment.java
+++ b/InCallUI/src/com/android/incallui/PostCharDialogFragment.java
@@ -16,7 +16,6 @@
package com.android.incallui;
-import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.DialogFragment;
@@ -52,7 +51,7 @@ public class PostCharDialogFragment extends DialogFragment {
builder.setPositiveButton(R.string.pause_prompt_yes, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int whichButton) {
- TelecommAdapter.getInstance().postDialContinue(mCallId, true);
+ TelecomAdapter.getInstance().postDialContinue(mCallId, true);
}
});
builder.setNegativeButton(R.string.pause_prompt_no, new DialogInterface.OnClickListener() {
@@ -71,6 +70,6 @@ public class PostCharDialogFragment extends DialogFragment {
public void onCancel(DialogInterface dialog) {
super.onCancel(dialog);
- TelecommAdapter.getInstance().postDialContinue(mCallId, false);
+ TelecomAdapter.getInstance().postDialContinue(mCallId, false);
}
}