diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-04-24 13:03:49 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-04-24 13:03:49 +0800 |
commit | 4e259838f0e722b4e48dfc2fe2e364583be1820e (patch) | |
tree | 42ceed19f4a0e57c72560cfecb3d026b3e9e1776 /shell/e-shell-view.c | |
parent | 879cce6697ca6a12fd9e9550489f88a46cffad87 (diff) | |
download | gsoc2013-evolution-4e259838f0e722b4e48dfc2fe2e364583be1820e.tar.gz gsoc2013-evolution-4e259838f0e722b4e48dfc2fe2e364583be1820e.tar.zst gsoc2013-evolution-4e259838f0e722b4e48dfc2fe2e364583be1820e.zip |
Commiting patch for bug #337258.
svn path=/trunk/; revision=31873
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |