mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-15 22:15:15 -05:00
fixup onNext was overloaded (due to the flinger) - at least unify the
protection level
This commit is contained in:
parent
2451dde1bc
commit
936b2779d6
@ -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);
|
||||||
|
@ -462,7 +462,7 @@ public class AccountSetupIncoming extends K9Activity implements OnClickListener
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onNext()
|
protected void onNext()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -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))
|
||||||
{
|
{
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user