mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-11 18:47:13 +01:00
QString::mid() replaced by QString::right()
This commit is contained in:
@@ -149,7 +149,7 @@ void Parser::parse(const QString &templateString,
|
||||
|
||||
if (index < templateString.length() - 1)
|
||||
{
|
||||
resultString.append(templateString.mid(last, templateString.length() - last));
|
||||
resultString.append(templateString.right(templateString.length() - index));
|
||||
}
|
||||
}
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user