Change remaining uses of {to,from}Ascii to {to,from}Latin1 [qdoc]
This operation should be a no-op anyway, since at this point in time, the fromAscii and toAscii functions simply call their fromLatin1 and toLatin1 counterparts. Task-number: QTBUG-21872 Change-Id: I2049c1919c15142ffb1dc406d183c6669ac3b1d6 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
This commit is contained in:
parent
5fb7b7322e
commit
0c2d643e01
@ -512,7 +512,7 @@ void Tokenizer::initialize(const Config &config)
|
||||
|
||||
QStringList tokens = config.getStringList(LANGUAGE_CPP + Config::dot + CONFIG_IGNORETOKENS);
|
||||
foreach (const QString &t, tokens) {
|
||||
const QByteArray tb = t.toAscii();
|
||||
const QByteArray tb = t.toLatin1();
|
||||
ignoredTokensAndDirectives->insert(tb, false);
|
||||
insertKwordIntoHash(tb.data(), -1);
|
||||
}
|
||||
@ -520,7 +520,7 @@ void Tokenizer::initialize(const Config &config)
|
||||
QStringList directives = config.getStringList(LANGUAGE_CPP + Config::dot
|
||||
+ CONFIG_IGNOREDIRECTIVES);
|
||||
foreach (const QString &d, directives) {
|
||||
const QByteArray db = d.toAscii();
|
||||
const QByteArray db = d.toLatin1();
|
||||
ignoredTokensAndDirectives->insert(db, true);
|
||||
insertKwordIntoHash(db.data(), -1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user