diff options
Diffstat (limited to 'my-evolution/component-factory.c')
-rw-r--r-- | my-evolution/component-factory.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/my-evolution/component-factory.c b/my-evolution/component-factory.c index 659342506f..832042e7c6 100644 --- a/my-evolution/component-factory.c +++ b/my-evolution/component-factory.c @@ -27,7 +27,7 @@ static gint running_objects = 0; static const EvolutionShellComponentFolderType folder_types[] = { - { "My Evolution", "evolution-today.png", FALSE, NULL, NULL }, + { "Summary", "evolution-today.png", FALSE, NULL, NULL }, { NULL, NULL } }; @@ -48,7 +48,8 @@ create_view (EvolutionShellComponent *shell, BonoboControl *control; - if (g_strcasecmp (folder_type, "My Evolution") != 0) { + g_print ("folder_type: %s\n", folder_type); + if (g_strcasecmp (folder_type, "Summary") != 0) { return EVOLUTION_SHELL_COMPONENT_UNSUPPORTEDTYPE; } |