summaryrefslogtreecommitdiff
path: root/InCallUI/src
diff options
context:
space:
mode:
Diffstat (limited to 'InCallUI/src')
-rw-r--r--InCallUI/src/com/android/incallui/InCallDateUtils.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/InCallUI/src/com/android/incallui/InCallDateUtils.java b/InCallUI/src/com/android/incallui/InCallDateUtils.java
index 88c5354c0..156eea06f 100644
--- a/InCallUI/src/com/android/incallui/InCallDateUtils.java
+++ b/InCallUI/src/com/android/incallui/InCallDateUtils.java
@@ -33,22 +33,19 @@ public class InCallDateUtils {
final Resources res = Resources.getSystem();
StringBuilder duration = new StringBuilder();
if (hours > 0) {
- duration.append(res.getQuantityString(
- com.android.internal.R.plurals.duration_hours, hours, hours));
+ duration.append(res.getQuantityString(R.plurals.duration_hours, hours, hours));
}
if (minutes > 0) {
if (hours > 0) {
duration.append(' ');
}
- duration.append(res.getQuantityString(
- com.android.internal.R.plurals.duration_minutes, minutes, minutes));
+ duration.append(res.getQuantityString(R.plurals.duration_minutes, minutes, minutes));
}
if (seconds > 0) {
if (hours > 0 || minutes > 0) {
duration.append(' ');
}
- duration.append(res.getQuantityString(
- com.android.internal.R.plurals.duration_seconds, seconds, seconds));
+ duration.append(res.getQuantityString(R.plurals.duration_seconds, seconds, seconds));
}
return duration.toString();
}