1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

fixup onNext was overloaded (due to the flinger) - at least unify the

protection level
This commit is contained in:
Jesse Vincent 2010-12-13 01:02:31 +00:00
parent 2451dde1bc
commit 936b2779d6
4 changed files with 4 additions and 4 deletions

View File

@ -274,7 +274,7 @@ public class AccountSetupBasics extends K9Activity
} }
} }
private void onNext() protected void onNext()
{ {
String email = mEmailView.getText().toString(); String email = mEmailView.getText().toString();
String[] emailParts = splitEmail(email); String[] emailParts = splitEmail(email);

View File

@ -462,7 +462,7 @@ public class AccountSetupIncoming extends K9Activity implements OnClickListener
} }
} }
private void onNext() protected void onNext()
{ {
try try
{ {

View File

@ -89,7 +89,7 @@ public class AccountSetupNames extends K9Activity implements OnClickListener
Utility.setCompoundDrawablesAlpha(mDoneButton, mDoneButton.isEnabled() ? 255 : 128); Utility.setCompoundDrawablesAlpha(mDoneButton, mDoneButton.isEnabled() ? 255 : 128);
} }
private void onNext() protected void onNext()
{ {
if (Utility.requiredFieldValid(mDescription)) if (Utility.requiredFieldValid(mDescription))
{ {

View File

@ -330,7 +330,7 @@ public class AccountSetupOutgoing extends K9Activity implements OnClickListener,
} }
} }
private void onNext() protected void onNext()
{ {
int securityType = (Integer)((SpinnerOption)mSecurityTypeView.getSelectedItem()).value; int securityType = (Integer)((SpinnerOption)mSecurityTypeView.getSelectedItem()).value;
URI uri; URI uri;