Engine now uses a master Folder object that synchronizes between the network and the local store. Also, the Geary.Folder interface was getting ugly to code when the implementation was more than trivial, so moved to standard getters for it.
12 lines
281 B
Vala
12 lines
281 B
Vala
/* Copyright 2011 Yorba Foundation
|
|
*
|
|
* This software is licensed under the GNU Lesser General Public License
|
|
* (version 2.1 or later). See the COPYING file in this distribution.
|
|
*/
|
|
|
|
public errordomain Geary.EngineError {
|
|
OPEN_REQUIRED,
|
|
ALREADY_OPEN,
|
|
NOT_FOUND
|
|
}
|
|
|