1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-01-12 06:08:25 -05:00

Merge from 2.0-MAINT branch

This commit is contained in:
Bao-Long Nguyen-Trong 2009-11-19 00:42:27 +00:00
parent 1e57188f38
commit 59bc0ac467

View File

@ -445,10 +445,8 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
addressList = ""; addressList = "";
if (extraEmail != null) { if (extraEmail != null) {
arraySize = extraEmail.length; arraySize = extraEmail.length;
if (arraySize > 1) { for (i=0; i < arraySize; i++) {
for (i=0; i < arraySize; i++) { addressList += extraEmail[i]+", ";
addressList += extraEmail[i]+", ";
}
} }
} }
mToView.setText(addressList); mToView.setText(addressList);
@ -456,10 +454,8 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
addressList = ""; addressList = "";
if (extraCc != null) { if (extraCc != null) {
arraySize = extraCc.length; arraySize = extraCc.length;
if (arraySize > 1) { for (i=0; i < arraySize; i++) {
for (i=0; i < arraySize; i++) { addressList += extraCc[i]+", ";
addressList += extraCc[i]+", ";
}
} }
} }
mCcView.setText(addressList); mCcView.setText(addressList);
@ -467,10 +463,8 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
addressList = ""; addressList = "";
if (extraBcc != null) { if (extraBcc != null) {
arraySize = extraBcc.length; arraySize = extraBcc.length;
if (arraySize > 1) { for (i=0; i < arraySize; i++) {
for (i=0; i < arraySize; i++) { addressList += extraBcc[i]+", ";
addressList += extraBcc[i]+", ";
}
} }
} }
mBccView.setText(addressList); mBccView.setText(addressList);