diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-03-29 21:37:59 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-03-30 15:09:43 +0100 |
commit | 174430d7a831eede078b6718d991b506d39180f1 (patch) | |
tree | 1285aaf3f4df0a79af4a337ab9377bfe62f6f52d /vcl/source | |
parent | 08d394857cf238bf62402b75eedd2609a3455a41 (diff) |
Related: tdf#160159 use a stock icon for the character map
https://specifications.freedesktop.org/icon-naming-spec/0.8/ar01s04.html
Where "accessories-character-map"
is
"The icon used for the ... character accessory program"
Change-Id: I48c72aaa3827037eb6921571bcce061fe60ac135
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165561
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/window/builder.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx index de5c5ea1bbce..fcb3a21fee30 100644 --- a/vcl/source/window/builder.cxx +++ b/vcl/source/window/builder.cxx @@ -118,6 +118,8 @@ namespace return SV_RESID_BITMAP_CLOSEDOC; else if (sType == u"x-office-calendar") return IMG_CALENDAR; + else if (sType == u"accessories-character-map") + return IMG_CHARACTER_MAP; return OUString(); } |