Geary.Folder: Add SpecialUse.CUSTOM and set_used_as_custom method

Support applications setting custom special uses for folders.
This commit is contained in:
Michael Gratton 2020-04-06 13:06:14 +10:00 committed by Michael James Gratton
parent e9ce94b655
commit e22d74db4b
5 changed files with 75 additions and 4 deletions

View file

@ -119,4 +119,9 @@ public class Geary.MockFolder : Folder, MockObject {
throw new EngineError.UNSUPPORTED("Mock method");
}
public override void set_used_as_custom(bool enabled)
throws EngineError.UNSUPPORTED {
throw new EngineError.UNSUPPORTED("Mock method");
}
}