From: Andy Scherzinger Date: Mon, 2 Nov 2015 11:32:15 +0000 (+0100) Subject: fixed another typo X-Git-Tag: beta-20151128~7^2~7 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/8110be015585c05fdd675233a5defca8d014298f fixed another typo --- diff --git a/src/com/owncloud/android/ui/adapter/LocalFileListAdapter.java b/src/com/owncloud/android/ui/adapter/LocalFileListAdapter.java index a6839e55..54705dab 100644 --- a/src/com/owncloud/android/ui/adapter/LocalFileListAdapter.java +++ b/src/com/owncloud/android/ui/adapter/LocalFileListAdapter.java @@ -120,9 +120,9 @@ public class LocalFileListAdapter extends BaseAdapter implements ListAdapter { } fileIcon.setTag(file.hashCode()); - TextView fileSizeV = (TextView) view.findViewById(R.id.file_size); + TextView fileSizeV = (TextView) view.findViewById(R.id.last_size); TextView fileSizeSeparatorV = (TextView) view.findViewById(R.id.file_separator); - TextView lastModV = (TextView) view.findViewById(R.id.last_mod); + TextView lastModV = (TextView) view.findViewById(R.id.file_mod); ImageView checkBoxV = (ImageView) view.findViewById(R.id.custom_checkbox); if (!file.isDirectory()) { fileSizeSeparatorV.setVisibility(View.VISIBLE);