diff options
author | Andreas Heinisch <andreas.heinisch@yahoo.de> | 2024-01-11 13:09:51 +0100 |
---|---|---|
committer | Andreas Heinisch <andreas.heinisch@yahoo.de> | 2024-01-11 19:25:50 +0100 |
commit | a03a9236b01437b573cb68112959b9403418e11b (patch) | |
tree | de3d1345f796582dd3c83cc6f1598d48a99748ac /editeng/source/misc | |
parent | 773aa743ccb73a8aee027e1e5c8d2b4a0d066019 (diff) |
tdf#156769 - Escape the question mark in the storage name
Otherwise, an auto-text using the question mark for its shortcut
cannot be inserted.
Change-Id: I369e3d0f2ff82cea2d053896964a5c2c23b8d6f6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161921
Tested-by: Jenkins
Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
Diffstat (limited to 'editeng/source/misc')
-rw-r--r-- | editeng/source/misc/svxacorr.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx index ff2c4518aadd..d278b582e833 100644 --- a/editeng/source/misc/svxacorr.cxx +++ b/editeng/source/misc/svxacorr.cxx @@ -1976,6 +1976,8 @@ static void GeneratePackageName ( std::u16string_view rShort, OUString& rPackage case ':': case '.': case '\\': + // tdf#156769 - escape the question mark in the storage name + case '?': aBuf[nPos] = '_'; break; default: |