VirtualBox

Changeset 29007 in vbox for trunk/src/VBox


Ignore:
Timestamp:
May 4, 2010 11:49:23 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
61043
Message:

FE/Qt: fixed foreach() usage

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp

    r28931 r29007  
    44934493    {
    44944494        QWidgetList list = QApplication::topLevelWidgets();
    4495         QWidget* w = NULL;
    4496         foreach(w, list)
     4495        foreach(QWidget *w, list)
    44974496        {
    44984497            if ((!aName || strcmp (w->objectName().toAscii().constData(), aName) == 0) &&
    44994498                (!aClassName || strcmp (w->metaObject()->className(), aClassName) == 0))
    4500                 break;
     4499                return w;
    45014500            if (aRecursive)
    45024501            {
    45034502                w = findWidget (w, aName, aClassName, aRecursive);
    45044503                if (w)
    4505                     break;
     4504                    return w;
    45064505            }
    45074506        }
    4508         return w;
     4507        return NULL;
    45094508    }
    45104509
     
    45124511     * Please note that this call is recursivly. */
    45134512    QList<QWidget *> list = qFindChildren<QWidget *> (aParent, aName);
    4514     QWidget *child = NULL;
    4515     foreach(child, list)
     4513    foreach(QWidget *child, list)
    45164514    {
    45174515        if (!aClassName || strcmp (child->metaObject()->className(), aClassName) == 0)
    4518             break;
    4519     }
    4520     return child;
     4516            return child;
     4517    }
     4518    return NULL;
    45214519}
    45224520
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette