summaryrefslogtreecommitdiffstats
path: root/src/com/android/mail/ui/AnimatedAdapter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/mail/ui/AnimatedAdapter.java')
-rw-r--r--src/com/android/mail/ui/AnimatedAdapter.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/android/mail/ui/AnimatedAdapter.java b/src/com/android/mail/ui/AnimatedAdapter.java
index 86a3658bb..2b38d27f8 100644
--- a/src/com/android/mail/ui/AnimatedAdapter.java
+++ b/src/com/android/mail/ui/AnimatedAdapter.java
@@ -380,12 +380,12 @@ public class AnimatedAdapter extends SimpleCursorAdapter {
}
public View createConversationItemView(SwipeableConversationItemView view, Context context,
- Conversation conv, int position) {
+ Conversation conv) {
if (view == null) {
view = new SwipeableConversationItemView(context, mAccount);
}
view.bind(conv, mActivity, mBatchConversations, mFolder, getCheckboxSetting(),
- mSwipeEnabled, mImportanceMarkersEnabled, mShowChevronsEnabled, this, position);
+ mSwipeEnabled, mImportanceMarkersEnabled, mShowChevronsEnabled, this);
return view;
}
@@ -556,7 +556,7 @@ public class AnimatedAdapter extends SimpleCursorAdapter {
((SwipeableConversationItemView) convertView).reset();
}
final View v = createConversationItemView((SwipeableConversationItemView) convertView,
- mContext, conv, position);
+ mContext, conv);
Utils.traceEndSection();
return v;
}
@@ -790,7 +790,7 @@ public class AnimatedAdapter extends SimpleCursorAdapter {
position, null, parent);
view.reset();
view.bind(conversation, mActivity, mBatchConversations, mFolder, getCheckboxSetting(),
- mSwipeEnabled, mImportanceMarkersEnabled, mShowChevronsEnabled, this, position);
+ mSwipeEnabled, mImportanceMarkersEnabled, mShowChevronsEnabled, this);
mAnimatingViews.put(conversation.id, view);
return view;
}