Commiting patch for bug #337258.

svn path=/trunk/; revision=31873
This commit is contained in:
Srinivasa Ragavan
2006-04-24 05:03:49 +00:00
parent 879cce6697
commit 4e259838f0
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2006-04-06 Alejandro Andres <fuzzy.alej@gmail.com>
* e-shell-view.c
* e-shell-window.c
Fixes #337258. Now Evolution is shown at the end of the title bar.
2006-04-21 Srinivasa Ragavan <sragavan@novell.com>
** Fixes bug #329731

View File

@ -43,7 +43,7 @@ static void
impl_ShellView_setTitle(PortableServer_Servant _servant, const CORBA_char *id, const CORBA_char * title, CORBA_Environment * ev)
{
EShellView *esw = (EShellView *)bonobo_object_from_servant(_servant);
char *tmp = g_strdup_printf("Evolution - %s", title);
char *tmp = g_strdup_printf("%s - Evolution", title);
e_shell_window_set_title(esw->window, id, tmp);
g_free(tmp);

View File

@ -324,7 +324,7 @@ switch_view (EShellWindow *window, ComponentView *component_view)
}
if (component_view->title == NULL) {
title = g_strdup_printf ("Evolution - %s", info->button_label);
title = g_strdup_printf ("%s - Evolution", info->button_label);
gtk_window_set_title (GTK_WINDOW (window), title);
g_free (title);
} else