summaryrefslogtreecommitdiffstats
path: root/src/extension/system.cpp
diff options
context:
space:
mode:
authorAlexander Valavanis <valavanisalex@gmail.com>2019-01-22 19:13:45 +0000
committerAlexander Valavanis <valavanisalex@gmail.com>2019-01-22 19:13:45 +0000
commit6053b3fd123bfd7d1e910b2e19c60b1c58e2e6a8 (patch)
treeaadd2d927bb4738853f2be3110eaa512355ad1a2 /src/extension/system.cpp
parentGet rid of unused empty toolbox creation (diff)
parentFix some typos and syntax errors (diff)
downloadinkscape-6053b3fd123bfd7d1e910b2e19c60b1c58e2e6a8.tar.gz
inkscape-6053b3fd123bfd7d1e910b2e19c60b1c58e2e6a8.zip
Merge branch 'master' of gitlab.com:inkscape/inkscape
Diffstat (limited to 'src/extension/system.cpp')
-rw-r--r--src/extension/system.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/system.cpp b/src/extension/system.cpp
index ea486ed80..412e5dcd4 100644
--- a/src/extension/system.cpp
+++ b/src/extension/system.cpp
@@ -278,7 +278,7 @@ save(Extension *key, SPDocument *doc, gchar const *filename, bool setextension,
}
// test if the file exists and is writable
- // the test only checks the file attributes and might pass where ACL does not allow to write
+ // the test only checks the file attributes and might pass where ACL does not allow writes
if (Inkscape::IO::file_test(filename, G_FILE_TEST_EXISTS) && !Inkscape::IO::file_is_writable(filename)) {
g_free(fileName);
throw Output::file_read_only();