summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/InCallActivity.java
diff options
context:
space:
mode:
authorSailesh Nepal <sail@google.com>2014-04-01 12:33:49 -0700
committerSailesh Nepal <sail@google.com>2014-04-01 14:11:32 -0700
commit7b2248bfff11c50e208908cb74b5f94b3ad7a3c0 (patch)
tree05991e112f2bb37f68fecf13bb7a364965c91f71 /InCallUI/src/com/android/incallui/InCallActivity.java
parent248a6687e8075e9730217be73c54ee4f95501a0e (diff)
InCallUI - Use String IDs
Change-Id: Ibacb79658c146466d4f23bfcf7af0ebfb6e84dd0
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;