summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/InCallActivity.java
diff options
context:
space:
mode:
Diffstat (limited to 'InCallUI/src/com/android/incallui/InCallActivity.java')
-rw-r--r--InCallUI/src/com/android/incallui/InCallActivity.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/InCallUI/src/com/android/incallui/InCallActivity.java b/InCallUI/src/com/android/incallui/InCallActivity.java
index 1b351d545..5262045f2 100644
--- a/InCallUI/src/com/android/incallui/InCallActivity.java
+++ b/InCallUI/src/com/android/incallui/InCallActivity.java
@@ -57,7 +57,7 @@ public class InCallActivity extends Activity {
/** Use to pass parameters for showing the PostCharDialog to {@link #onResume} */
private boolean mShowPostCharWaitDialogOnResume;
- private int mShowPostCharWaitDialogCallId;
+ private String mShowPostCharWaitDialogCallId;
private String mShowPostCharWaitDialogChars;
@Override
@@ -435,13 +435,13 @@ public class InCallActivity extends Activity {
}
}
- public void showPostCharWaitDialog(int callId, String chars) {
+ public void showPostCharWaitDialog(String callId, String chars) {
if (isForegroundActivity()) {
final PostCharDialogFragment fragment = new PostCharDialogFragment(callId, chars);
fragment.show(getFragmentManager(), "postCharWait");
mShowPostCharWaitDialogOnResume = false;
- mShowPostCharWaitDialogCallId = 0;
+ mShowPostCharWaitDialogCallId = null;
mShowPostCharWaitDialogChars = null;
} else {
mShowPostCharWaitDialogOnResume = true;