diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-28 13:56:16 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-28 13:56:16 +0800 |
commit | d77b63aa3c2d2ecdf60ec3fbe86df2d6f5b9b667 (patch) | |
tree | 4046aa89efe34569dfc28539676467934d610357 /shell/e-shell.c | |
parent | 65b4ea4c01aaba9d29c59d9f659f3ecbfacaf0b8 (diff) | |
download | gsoc2013-evolution-d77b63aa3c2d2ecdf60ec3fbe86df2d6f5b9b667.tar.gz gsoc2013-evolution-d77b63aa3c2d2ecdf60ec3fbe86df2d6f5b9b667.tar.zst gsoc2013-evolution-d77b63aa3c2d2ecdf60ec3fbe86df2d6f5b9b667.zip |
Rename `e_shell_new_view()' into `e_shell_create_view()' to avoid
confusion with `e_shell_view_new()'.
svn path=/trunk/; revision=10556
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 167e718ed6..69ed651448 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -220,7 +220,7 @@ impl_Shell_createNewView (PortableServer_Servant servant, return CORBA_OBJECT_NIL; } - shell_view = e_shell_new_view (shell, uri); + shell_view = e_shell_create_view (shell, uri); if (shell_view == NULL) { CORBA_exception_set (ev, CORBA_USER_EXCEPTION, ex_GNOME_Evolution_Shell_NotFound, NULL); @@ -876,7 +876,7 @@ e_shell_new (const char *local_directory, /** - * e_shell_new_view: + * e_shell_create_view: * @shell: The shell for which to create a new view. * @uri: URI for the new view. * @@ -885,8 +885,8 @@ e_shell_new (const char *local_directory, * Return value: The new view. **/ EShellView * -e_shell_new_view (EShell *shell, - const char *uri) +e_shell_create_view (EShell *shell, + const char *uri) { EShellView *view; EShellPrivate *priv; @@ -1185,8 +1185,8 @@ e_shell_restore_from_settings (EShell *shell) EShellView *view; /* FIXME: restore the URI here. There should be an - e_shell_new_view_from_configuration() thingie. */ - view = e_shell_new_view (shell, NULL); + e_shell_create_view_from_configuration() thingie. */ + view = e_shell_create_view (shell, NULL); if (! e_shell_view_load_settings (view, i)) retval = FALSE; |