fixup onNext was overloaded (due to the flinger) - at least unify the
protection level
This commit is contained in:
parent
2451dde1bc
commit
936b2779d6
4 changed files with 4 additions and 4 deletions
|
@ -274,7 +274,7 @@ public class AccountSetupBasics extends K9Activity
|
|||
}
|
||||
}
|
||||
|
||||
private void onNext()
|
||||
protected void onNext()
|
||||
{
|
||||
String email = mEmailView.getText().toString();
|
||||
String[] emailParts = splitEmail(email);
|
||||
|
|
|
@ -462,7 +462,7 @@ public class AccountSetupIncoming extends K9Activity implements OnClickListener
|
|||
}
|
||||
}
|
||||
|
||||
private void onNext()
|
||||
protected void onNext()
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
|
@ -89,7 +89,7 @@ public class AccountSetupNames extends K9Activity implements OnClickListener
|
|||
Utility.setCompoundDrawablesAlpha(mDoneButton, mDoneButton.isEnabled() ? 255 : 128);
|
||||
}
|
||||
|
||||
private void onNext()
|
||||
protected void onNext()
|
||||
{
|
||||
if (Utility.requiredFieldValid(mDescription))
|
||||
{
|
||||
|
|
|
@ -330,7 +330,7 @@ public class AccountSetupOutgoing extends K9Activity implements OnClickListener,
|
|||
}
|
||||
}
|
||||
|
||||
private void onNext()
|
||||
protected void onNext()
|
||||
{
|
||||
int securityType = (Integer)((SpinnerOption)mSecurityTypeView.getSelectedItem()).value;
|
||||
URI uri;
|
||||
|
|
Loading…
Reference in a new issue