fix: for Qt5 compatibility

Dieser Commit ist enthalten in:
Reinder Feenstra 2025-11-01 09:22:53 +01:00
Ursprung b4939fc83e
Commit 1021034383

Datei anzeigen

@ -33,8 +33,8 @@ void trySetLocaleName(Object& object)
auto value = id->toString(); auto value = id->toString();
if(int pos = value.lastIndexOf("_"); pos >= 0) if(int pos = value.lastIndexOf("_"); pos >= 0)
{ {
auto prefix = value.first(pos); auto prefix = value.left(pos);
auto number = value.last(value.size() - pos - 1); auto number = value.right(value.size() - pos - 1);
auto term = QString("default_name:").append(prefix); auto term = QString("default_name:").append(prefix);
if(Locale::instance->exists(term)) if(Locale::instance->exists(term))
{ {