use Universal character names in string literals.
This commit is contained in:
parent
ea707d1923
commit
fc68af7b0b
|
@ -322,13 +322,13 @@ const QString AppTheme::categoryIcon() const
|
||||||
{
|
{
|
||||||
switch (mCategory) {
|
switch (mCategory) {
|
||||||
case ThemeCategory::FailSafe:
|
case ThemeCategory::FailSafe:
|
||||||
return "❌";
|
return QString{"\U0000274C"}; //❌
|
||||||
case ThemeCategory::BuiltIn:
|
case ThemeCategory::BuiltIn:
|
||||||
return "📦";
|
return QString{"\U0001F4E6"}; //📦
|
||||||
case ThemeCategory::Custom:
|
case ThemeCategory::Custom:
|
||||||
return "📄";
|
return QString{"\U0001F4C4"}; //📄
|
||||||
case ThemeCategory::Shared:
|
case ThemeCategory::Shared:
|
||||||
return "🌐";
|
return QString{"\U0001F310"}; //🌐
|
||||||
default:
|
default:
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue