blob: b0b774526f6ebb111cc628ad6940a5ed9ec1230d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
int a()
{
for(QStringList::const_iterator codesIt = _codes.constBegin(); codesIt != _codes.constEnd(); ++codesIt) {
if( // Current codes enough to compare:
( ( *codesIt ).size() <= strId ) ||
// Character on this slot was not readable:
( ( *codesIt ).at( strId ) == m_wildcard ) ||
// This character is matching:
( code.at( strId ) == ( *codesIt ).at( strId ) ) ) {
// Ignore this slot:
continue;
}
}
}
|