summaryrefslogtreecommitdiffstats
path: root/src/com/android/dialer/calllog/CallLogListItemViews.java
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2014-05-21 12:10:40 -0700
committerTyler Gunn <tgunn@google.com>2014-05-21 12:10:40 -0700
commit9138834059797469f73390c9faa71ce98b4434c1 (patch)
tree27245e4cd1765996f1e9e93503aaad78d0c0a117 /src/com/android/dialer/calllog/CallLogListItemViews.java
parent8ef8020b8b792026a8dd15e029055f7d5e2d48f6 (diff)
downloadandroid_packages_apps_Dialer-9138834059797469f73390c9faa71ce98b4434c1.tar.gz
android_packages_apps_Dialer-9138834059797469f73390c9faa71ce98b4434c1.tar.bz2
android_packages_apps_Dialer-9138834059797469f73390c9faa71ce98b4434c1.zip
Removing the delete button from call log entries.
Bug: 13962594 Change-Id: I59ee9badc239f4ce3a81320cb0e801af973707a5
Diffstat (limited to 'src/com/android/dialer/calllog/CallLogListItemViews.java')
-rw-r--r--src/com/android/dialer/calllog/CallLogListItemViews.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/com/android/dialer/calllog/CallLogListItemViews.java b/src/com/android/dialer/calllog/CallLogListItemViews.java
index 474b47895..762b8ff35 100644
--- a/src/com/android/dialer/calllog/CallLogListItemViews.java
+++ b/src/com/android/dialer/calllog/CallLogListItemViews.java
@@ -44,8 +44,6 @@ public final class CallLogListItemViews {
public View actionsView;
/** The "call back" action button - assigned only when the action section is expanded. */
public TextView callBackButtonView;
- /** The "delete" action button - assigned only when the action section is expanded. */
- public TextView deleteButtonView;
/** The "voicemail" action button - assigned only when the action section is expanded. */
public TextView voicemailButtonView;
/** The "details" action button - assigned only when the action section is expanded. */
@@ -122,7 +120,6 @@ public final class CallLogListItemViews {
new View(context),
new TextView(context));
views.callBackButtonView = new TextView(context);
- views.deleteButtonView = new TextView(context);
views.voicemailButtonView = new TextView(context);
views.detailsButtonView = new TextView(context);
views.actionsView = new View(context);