aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index a22d255784..8b137adc68 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -45,6 +45,7 @@
#include <gal/widgets/e-gui-utils.h>
#include <gal/util/e-util.h>
+#include <gal/util/e-unicode-i18n.h>
#include "Evolution.h"
@@ -64,7 +65,6 @@
#include "e-shortcuts.h"
#include "e-storage-set.h"
#include "e-splash.h"
-#include "e-summary-storage.h"
#include "e-uri-schema-registry.h"
#include "evolution-storage-set-view-factory.h"
@@ -87,7 +87,7 @@ struct _EShellPrivate {
EStorageSet *storage_set;
ELocalStorage *local_storage;
- ESummaryStorage *summary_storage;
+ EStorage *summary_storage;
EShortcuts *shortcuts;
EFolderTypeRegistry *folder_type_registry;
@@ -657,8 +657,10 @@ setup_local_storage (EShell *shell)
e_storage_set_add_storage (priv->storage_set, local_storage);
priv->local_storage = E_LOCAL_STORAGE (local_storage);
- priv->summary_storage = E_SUMMARY_STORAGE (e_summary_storage_new ());
- e_storage_set_add_storage (priv->storage_set, E_STORAGE (priv->summary_storage));
+ priv->summary_storage = e_storage_new (E_SUMMARY_STORAGE_NAME,
+ U_("Summary"),
+ "/", "summary");
+ e_storage_set_add_storage (priv->storage_set, priv->summary_storage);
return TRUE;
}