diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-08-16 02:10:02 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-08-16 02:10:02 +0800 |
commit | df89536d526a82af8fffc98d91366ace946d2b90 (patch) | |
tree | 711dc31a174ec7e9114e24274748004ca4f1b221 /my-evolution/component-factory.c | |
parent | ea623b5543210467497c9bcc68e0adc56c7cf40d (diff) | |
download | gsoc2013-evolution-df89536d526a82af8fffc98d91366ace946d2b90.tar.gz gsoc2013-evolution-df89536d526a82af8fffc98d91366ace946d2b90.tar.zst gsoc2013-evolution-df89536d526a82af8fffc98d91366ace946d2b90.zip |
s/My Evolution/Summary/
svn path=/trunk/; revision=12058
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; } |