aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog7
-rw-r--r--shell/e-shell-view.c2
-rw-r--r--shell/e-shell-window.c2
3 files changed, 9 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index f3af0394fe..4184f6b31a 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -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
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index 5ed35482ad..48564fe84d 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -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);
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c
index 2d7d6aaba4..92c903a203 100644
--- a/shell/e-shell-window.c
+++ b/shell/e-shell-window.c
@@ -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