diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2019-01-15 12:37:25 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2019-01-15 12:37:25 +0000 |
| commit | fdead58322deb6228f83b7ee9896c0b82ef709d9 (patch) | |
| tree | fc0545c342f07c4bff2b38c835658dbf3f5052fd /src/inkscape-application.cpp | |
| parent | Update error messages. (diff) | |
| download | inkscape-fdead58322deb6228f83b7ee9896c0b82ef709d9.tar.gz inkscape-fdead58322deb6228f83b7ee9896c0b82ef709d9.zip | |
Use ink_file_open in sp_file_open.
Diffstat (limited to 'src/inkscape-application.cpp')
| -rw-r--r-- | src/inkscape-application.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/inkscape-application.cpp b/src/inkscape-application.cpp index 2e4c690cf..0d55b8ccd 100644 --- a/src/inkscape-application.cpp +++ b/src/inkscape-application.cpp @@ -267,7 +267,8 @@ ConcreteInkscapeApplication<T>::on_open(const Gio::Application::type_vec_files& } else { // Open file - SPDocument *doc = ink_file_open(file); + bool cancelled; + SPDocument *doc = ink_file_open(file, cancelled); if (!doc) continue; // Add to Inkscape::Application... |
