diff options
Diffstat (limited to 'src/document.cpp')
| -rw-r--r-- | src/document.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/document.cpp b/src/document.cpp index 1b6e14694..7c43b475c 100644 --- a/src/document.cpp +++ b/src/document.cpp @@ -626,8 +626,8 @@ do_change_uri(SPDocument *const document, gchar const *const filename, bool cons new_uri = g_strdup(filename); #endif - new_base = g_path_get_dirname(document->uri); - new_name = g_path_get_basename(document->uri); + new_base = g_path_get_dirname(new_uri); + new_name = g_path_get_basename(new_uri); } else { new_uri = g_strdup_printf(_("Unnamed document %d"), ++doc_count); new_base = NULL; |
