diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-10-22 18:46:09 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-10-22 18:47:35 +0300 |
commit | b1faaf7335d2c7bb951c1170e66ee6aab9d37e66 (patch) | |
tree | 12919de287733b0cadb725eab303e50217884cbd /desktop | |
parent | 362fc24e96813e7e55513a696d2f3161a7a29e57 (diff) |
Put quotes around a URL in a message to make it more obvious if it is empty
Change-Id: I03fe3f70ee97066d9c2083d4ef091c501f241392
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/deployment/misc/dp_ucb.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/misc/dp_ucb.cxx b/desktop/source/deployment/misc/dp_ucb.cxx index 017aad657279..75bbbe843142 100644 --- a/desktop/source/deployment/misc/dp_ucb.cxx +++ b/desktop/source/deployment/misc/dp_ucb.cxx @@ -103,7 +103,7 @@ bool create_folder( // invalid: has to be at least "auth:/..." if (throw_exc) throw ContentCreationException( - "Cannot create folder (invalid path): " + url, + "Cannot create folder (invalid path): '" + url + "'", Reference<XInterface>(), ContentCreationError_UNKNOWN ); return false; } @@ -154,7 +154,7 @@ bool create_folder( } if (throw_exc) throw ContentCreationException( - "Cannot create folder: " + url, + "Cannot create folder: '" + url + "'", Reference<XInterface>(), ContentCreationError_UNKNOWN ); return false; } |