Added account warning about no identities

This commit is contained in:
M66B
2019-04-27 11:37:10 +02:00
parent ccd1e532fd
commit cf55c8984b
5 changed files with 26 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ public class TupleAccountEx extends EntityAccount {
public int unseen;
public int unsent;
public int operations;
public int identities; // synchronizing
public boolean drafts;
public boolean uiEquals(Object obj) {
@@ -30,6 +31,7 @@ public class TupleAccountEx extends EntityAccount {
TupleAccountEx other = (TupleAccountEx) obj;
return (super.equals(obj) &&
this.unseen == other.unseen &&
this.identities == other.identities &&
this.drafts == other.drafts);
} else
return false;
@@ -43,6 +45,7 @@ public class TupleAccountEx extends EntityAccount {
this.unseen == other.unseen &&
this.unsent == other.unsent &&
this.operations == other.operations &&
this.identities == other.identities &&
this.drafts == other.drafts);
} else
return false;