Save work.

This commit is contained in:
Martin Rotter 2015-11-22 19:29:31 +01:00
parent b7f6666e62
commit 54cf90baa3

View file

@ -30,7 +30,12 @@ class RecycleBin : public RootItem {
QVariant data(int column, int role) const;
// Empties the bin - removes all messages from it (does not remove
// them from DB, just permanently hide them, so that they are not
// re-downloaded).
virtual bool empty() = 0;
// Performs complete restoration of all messages contained in the bin
virtual bool restore() = 0;
};