Fix QLatin1String usage
Code such as QString s = QLatin1String("foo");
allocates memory,
QStringLiteral(foo) should be used instead.
Edited by patrick pereira
Code such as QString s = QLatin1String("foo");
allocates memory,
QStringLiteral(foo) should be used instead.