aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/e-mail-shell-backend.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-12-16 11:00:45 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-12-16 11:27:43 +0800
commit0eb2649bdeca7908c0d399321a21ffe189e4b8f6 (patch)
treebbfa0283421982f41773fa518747c2bb0be7177b /modules/mail/e-mail-shell-backend.h
parent5e8c5475cb08ae9a9b33e1916faa6d420572a68c (diff)
downloadgsoc2013-evolution-0eb2649bdeca7908c0d399321a21ffe189e4b8f6.tar
gsoc2013-evolution-0eb2649bdeca7908c0d399321a21ffe189e4b8f6.tar.gz
gsoc2013-evolution-0eb2649bdeca7908c0d399321a21ffe189e4b8f6.tar.bz2
gsoc2013-evolution-0eb2649bdeca7908c0d399321a21ffe189e4b8f6.tar.lz
gsoc2013-evolution-0eb2649bdeca7908c0d399321a21ffe189e4b8f6.tar.xz
gsoc2013-evolution-0eb2649bdeca7908c0d399321a21ffe189e4b8f6.tar.zst
gsoc2013-evolution-0eb2649bdeca7908c0d399321a21ffe189e4b8f6.zip
Introduce EMailBackend into libevolution-mail.
EMailBackend is an abstract subclass of EShellBackend that handles online and offline modes and application shutdown. Placing this in the shared mail library allows Anjal to reuse it. Evolution's mail module further extends this class as EMailShellBackend.
Diffstat (limited to 'modules/mail/e-mail-shell-backend.h')
-rw-r--r--modules/mail/e-mail-shell-backend.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/mail/e-mail-shell-backend.h b/modules/mail/e-mail-shell-backend.h
index 73ef10e75b..36f4064e68 100644
--- a/modules/mail/e-mail-shell-backend.h
+++ b/modules/mail/e-mail-shell-backend.h
@@ -22,7 +22,7 @@
#ifndef E_MAIL_SHELL_BACKEND_H
#define E_MAIL_SHELL_BACKEND_H
-#include <shell/e-shell-backend.h>
+#include <mail/e-mail-backend.h>
#include <camel/camel-folder.h>
#include <camel/camel-store.h>
@@ -55,12 +55,12 @@ typedef struct _EMailShellBackendClass EMailShellBackendClass;
typedef struct _EMailShellBackendPrivate EMailShellBackendPrivate;
struct _EMailShellBackend {
- EShellBackend parent;
+ EMailBackend parent;
EMailShellBackendPrivate *priv;
};
struct _EMailShellBackendClass {
- EShellBackendClass parent_class;
+ EMailBackendClass parent_class;
};
GType e_mail_shell_backend_get_type (void);