VirtualBox

Changeset 29008 in vbox for trunk/src/VBox


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

FE/Qt: fixed another foreach() misusage

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIMainDialog.cpp

    r28800 r29008  
    344344{
    345345    /* Search for the first default button in the dialog. */
    346     QPushButton *button = 0;
    347346    QList<QPushButton*> list = qFindChildren<QPushButton*> (this);
    348     foreach (button, list)
     347    foreach (QPushButton *button, list)
    349348        if (button->isDefault() &&
    350349            (button->parent() == centralWidget() ||
    351350             qobject_cast<QDialogButtonBox*> (button->parent())))
    352             break;
    353     return button;
     351            return button;
     352    return NULL;
    354353}
    355354
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