summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorRizal Muttaqin <riz_17_oke@yahoo.co.id>2018-05-21 12:06:51 +0700
committerHeiko Tietze <tietze.heiko@gmail.com>2018-05-22 10:38:59 +0200
commita06954bf5b100c9433b4e1dbcdcf8ab2df2763a1 (patch)
treebed3263a061f04744cd86d6965847a7bdce34665 /vcl
parent203d967c045c4bf4e83d18bdcb96e11f899e1056 (diff)
tdf#117342 - Add Karasa Jaga to LibreOffice core
Change-Id: Id121df0ddc763a299c5714cadd0d61740876e3d6 Reviewed-on: https://gerrit.libreoffice.org/54512 Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com> Tested-by: Heiko Tietze <tietze.heiko@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/IconThemeInfo.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/vcl/source/app/IconThemeInfo.cxx b/vcl/source/app/IconThemeInfo.cxx
index 6057e37a9236..95f1a358c93a 100644
--- a/vcl/source/app/IconThemeInfo.cxx
+++ b/vcl/source/app/IconThemeInfo.cxx
@@ -24,7 +24,8 @@ static const OUStringLiteral BREEZE_DARK_ID("breeze_dark");
static const OUStringLiteral BREEZE_DARK_DISPLAY_NAME("Breeze Dark");
static const OUStringLiteral SIFR_DARK_ID("sifr_dark");
static const OUStringLiteral SIFR_DARK_DISPLAY_NAME("Sifr Dark");
-
+static const OUStringLiteral KARASA_JAGA_ID("karasa_jaga");
+static const OUStringLiteral KARASA_JAGA_DISPLAY_NAME("Karasa Jaga");
static const OUStringLiteral HELPIMG_FAKE_THEME("helpimg");
OUString
@@ -129,6 +130,10 @@ IconThemeInfo::ThemeIdToDisplayName(const OUString& themeId)
return SIFR_DARK_DISPLAY_NAME;
}
+ else if (themeId.equalsIgnoreAsciiCase(KARASA_JAGA_ID)) {
+ return KARASA_JAGA_DISPLAY_NAME;
+ }
+
// make the first letter uppercase
OUString r;
sal_Unicode firstLetter = themeId[0];