diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-04 02:21:47 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-04 02:21:47 +0800 |
commit | 49fd4ffbc41c4270efcc28d108b5a66d8773e178 (patch) | |
tree | 0c3ee5b15690e5214cf14bcac364cd435e66334a /shell/e-shell-view-menu.c | |
parent | f273b40d5edeb4da6408c265097c44d70ae861eb (diff) | |
download | gsoc2013-evolution-49fd4ffbc41c4270efcc28d108b5a66d8773e178.tar gsoc2013-evolution-49fd4ffbc41c4270efcc28d108b5a66d8773e178.tar.gz gsoc2013-evolution-49fd4ffbc41c4270efcc28d108b5a66d8773e178.tar.bz2 gsoc2013-evolution-49fd4ffbc41c4270efcc28d108b5a66d8773e178.tar.lz gsoc2013-evolution-49fd4ffbc41c4270efcc28d108b5a66d8773e178.tar.xz gsoc2013-evolution-49fd4ffbc41c4270efcc28d108b5a66d8773e178.tar.zst gsoc2013-evolution-49fd4ffbc41c4270efcc28d108b5a66d8773e178.zip |
Update the ::user_select_folder() interface so that it accepts both a
physical URI or an evolution: one for specifying the default folder.
svn path=/trunk/; revision=4508
Diffstat (limited to 'shell/e-shell-view-menu.c')
-rw-r--r-- | shell/e-shell-view-menu.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 905d1d834b..996697d023 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -308,21 +308,16 @@ command_goto_folder (BonoboUIHandler *uih, EShellView *shell_view; EShell *shell; const char *current_uri; - const char *default_folder; shell_view = E_SHELL_VIEW (data); shell = e_shell_view_get_shell (shell_view); current_uri = e_shell_view_get_current_uri (shell_view); - if (strncmp (current_uri, E_SHELL_URI_PREFIX, E_SHELL_URI_PREFIX_LEN) == 0) - default_folder = current_uri + E_SHELL_URI_PREFIX_LEN; - else - default_folder = NULL; - folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Go to folder..."), - default_folder, NULL); + current_uri, + NULL); gtk_window_set_transient_for (GTK_WINDOW (folder_selection_dialog), GTK_WINDOW (shell_view)); |