diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-12 02:55:59 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-12 02:55:59 +0800 |
commit | ae6deca3ec1ecd0f9e4ac54b64f4bd4549d7460d (patch) | |
tree | 9ad518d6e879755d3476ad27cbb898fe019abb6c /shell/e-shell-folder-selection-dialog.c | |
parent | 8600d3c20533b3f1bc8b48ffe5253032cb339173 (diff) | |
download | gsoc2013-evolution-ae6deca3ec1ecd0f9e4ac54b64f4bd4549d7460d.tar gsoc2013-evolution-ae6deca3ec1ecd0f9e4ac54b64f4bd4549d7460d.tar.gz gsoc2013-evolution-ae6deca3ec1ecd0f9e4ac54b64f4bd4549d7460d.tar.bz2 gsoc2013-evolution-ae6deca3ec1ecd0f9e4ac54b64f4bd4549d7460d.tar.lz gsoc2013-evolution-ae6deca3ec1ecd0f9e4ac54b64f4bd4549d7460d.tar.xz gsoc2013-evolution-ae6deca3ec1ecd0f9e4ac54b64f4bd4549d7460d.tar.zst gsoc2013-evolution-ae6deca3ec1ecd0f9e4ac54b64f4bd4549d7460d.zip |
Fix some annoying warnings in the folder selection dialog.
svn path=/trunk/; revision=5339
Diffstat (limited to 'shell/e-shell-folder-selection-dialog.c')
-rw-r--r-- | shell/e-shell-folder-selection-dialog.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/shell/e-shell-folder-selection-dialog.c b/shell/e-shell-folder-selection-dialog.c index 3bf60d28e4..76801def2b 100644 --- a/shell/e-shell-folder-selection-dialog.c +++ b/shell/e-shell-folder-selection-dialog.c @@ -217,9 +217,11 @@ set_default_folder (EShellFolderSelectionDialog *shell_folder_selection_dialog, EShellFolderSelectionDialogPrivate *priv; char *default_path; + g_assert (default_uri != NULL); + priv = shell_folder_selection_dialog->priv; - if (default_uri && strncmp (default_uri, E_SHELL_URI_PREFIX, E_SHELL_URI_PREFIX_LEN) == 0) { + if (strncmp (default_uri, E_SHELL_URI_PREFIX, E_SHELL_URI_PREFIX_LEN) == 0) { /* `evolution:' URI. */ default_path = g_strdup (default_uri + E_SHELL_URI_PREFIX_LEN); } else { @@ -294,7 +296,8 @@ e_shell_folder_selection_dialog_construct (EShellFolderSelectionDialog *folder_s g_strdup (allowed_types[i])); } - set_default_folder (folder_selection_dialog, default_uri); + if (default_uri != NULL) + set_default_folder (folder_selection_dialog, default_uri); scroll_frame = e_scroll_frame_new (NULL, NULL); e_scroll_frame_set_policy (E_SCROLL_FRAME (scroll_frame), |