Move outbox to navigation menu

This commit is contained in:
M66B
2019-03-18 13:35:45 +00:00
parent 01fcffe8c9
commit 73a23b9d50
4 changed files with 77 additions and 27 deletions

View File

@@ -21,6 +21,7 @@ package eu.faircode.email;
public class TupleAccountEx extends EntityAccount {
public int unseen;
public int unsent;
public int operations;
@Override
@@ -29,6 +30,7 @@ public class TupleAccountEx extends EntityAccount {
TupleAccountEx other = (TupleAccountEx) obj;
return (super.equals(obj) &&
this.unseen == other.unseen &&
this.unsent == other.unsent &&
this.operations == other.operations);
} else
return false;