aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-04-09 23:54:24 +0800
committerDan Winship <danw@src.gnome.org>2002-04-09 23:54:24 +0800
commita1720426f1682646f5c355f044d7fa20883d6fb5 (patch)
treecd322a7f5f0a3073223b2049fd7c329ef7498a66 /shell/e-shell.c
parentc10d63c7c2449982993a9579a9f0b951632b9401 (diff)
downloadgsoc2013-evolution-a1720426f1682646f5c355f044d7fa20883d6fb5.tar
gsoc2013-evolution-a1720426f1682646f5c355f044d7fa20883d6fb5.tar.gz
gsoc2013-evolution-a1720426f1682646f5c355f044d7fa20883d6fb5.tar.bz2
gsoc2013-evolution-a1720426f1682646f5c355f044d7fa20883d6fb5.tar.lz
gsoc2013-evolution-a1720426f1682646f5c355f044d7fa20883d6fb5.tar.xz
gsoc2013-evolution-a1720426f1682646f5c355f044d7fa20883d6fb5.tar.zst
gsoc2013-evolution-a1720426f1682646f5c355f044d7fa20883d6fb5.zip
New. Check that things that need to be in the config db are. Right now it
* e-setup.c (e_setup_check_db): New. Check that things that need to be in the config db are. Right now it sets up the default folders. * e-shell.c (e_shell_construct): Call e_setup_check_db after getting the config db. * e-shell-constants.h: Add E_SUMMARY_URI, E_LOCAL_INBOX_URI, etc. * e-shortcuts.c (e_shortcuts_add_default_group): Use E_LOCAL_INBOX_URI, etc. * e-shell-view.c: #define FALLBACK_URI to E_SUMMARY_URI svn path=/trunk/; revision=16405
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index a05e53e665..0284318910 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -57,6 +57,7 @@
#include "e-corba-storage-registry.h"
#include "e-folder-type-registry.h"
#include "e-local-storage.h"
+#include "e-setup.h"
#include "e-shell-constants.h"
#include "e-shell-corba-icon-utils.h"
#include "e-shell-folder-selection-dialog.h"
@@ -1244,6 +1245,7 @@ e_shell_construct (EShell *shell,
CORBA_exception_free (&ev);
return E_SHELL_CONSTRUCT_RESULT_NOCONFIGDB;
}
+ e_setup_check_db (priv->db);
CORBA_exception_free (&ev);