mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-25 11:22:58 +00:00
use foreach() for iteration in QDBusMetaObjectGenerator::parseProperties()
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
a05e01b205
commit
dcfd6373a5
1 changed files with 1 additions and 4 deletions
|
@ -316,10 +316,7 @@ void QDBusMetaObjectGenerator::parseSignals()
|
|||
|
||||
void QDBusMetaObjectGenerator::parseProperties()
|
||||
{
|
||||
QDBusIntrospection::Properties::ConstIterator prop_it = data->properties.constBegin();
|
||||
QDBusIntrospection::Properties::ConstIterator prop_end = data->properties.constEnd();
|
||||
for ( ; prop_it != prop_end; ++prop_it) {
|
||||
const QDBusIntrospection::Property &p = *prop_it;
|
||||
foreach (const QDBusIntrospection::Property &p, data->properties) {
|
||||
Property mp;
|
||||
Type type = findType(p.type.toLatin1(), p.annotations);
|
||||
if (type.id == QVariant::Invalid)
|
||||
|
|
Loading…
Add table
Reference in a new issue