@ -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
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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
|
||||
|
||||
Reference in New Issue
Block a user