aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-backend.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-10 11:50:43 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-10 11:50:43 +0800
commit92e942499bffca812dcbc229f6c88ebb640e403a (patch)
tree88eff8cf45f83728f264c4f90582950452dee497 /shell/e-shell-backend.h
parente18f9eb725e0be78db138e9eb0d58ed4d3370c82 (diff)
downloadgsoc2013-evolution-92e942499bffca812dcbc229f6c88ebb640e403a.tar
gsoc2013-evolution-92e942499bffca812dcbc229f6c88ebb640e403a.tar.gz
gsoc2013-evolution-92e942499bffca812dcbc229f6c88ebb640e403a.tar.bz2
gsoc2013-evolution-92e942499bffca812dcbc229f6c88ebb640e403a.tar.lz
gsoc2013-evolution-92e942499bffca812dcbc229f6c88ebb640e403a.tar.xz
gsoc2013-evolution-92e942499bffca812dcbc229f6c88ebb640e403a.tar.zst
gsoc2013-evolution-92e942499bffca812dcbc229f6c88ebb640e403a.zip
Fix bugs caused by EShellBackend changes.
Diffstat (limited to 'shell/e-shell-backend.h')
-rw-r--r--shell/e-shell-backend.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/e-shell-backend.h b/shell/e-shell-backend.h
index 0dfab7a84b..570199c44e 100644
--- a/shell/e-shell-backend.h
+++ b/shell/e-shell-backend.h
@@ -84,7 +84,7 @@ struct _EShellBackend {
* @sort_order: Used to determine the order of backends listed in
* the main menu and in the switcher. See
* e_shell_backend_compare().
- * @view_type: #GType for the corresponding #EShellView subclass.
+ * @shell_view_type: #GType for the corresponding #EShellView subclass.
* @start: Method for notifying the backend to begin loading
* data and running background tasks. This is called
* just before the first instantiation of the
@@ -110,11 +110,12 @@ struct _EShellBackend {
struct _EShellBackendClass {
GObjectClass parent_class;
+ GType shell_view_type;
+
const gchar *name;
const gchar *aliases;
const gchar *schemes;
gint sort_order;
- GType view_type;
/* Methods */
void (*start) (EShellBackend *shell_backend);