Changeset 29008 in vbox for trunk/src/VBox
- Timestamp:
- May 4, 2010 11:54:44 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61044
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIMainDialog.cpp
r28800 r29008 344 344 { 345 345 /* Search for the first default button in the dialog. */ 346 QPushButton *button = 0;347 346 QList<QPushButton*> list = qFindChildren<QPushButton*> (this); 348 foreach ( button, list)347 foreach (QPushButton *button, list) 349 348 if (button->isDefault() && 350 349 (button->parent() == centralWidget() || 351 350 qobject_cast<QDialogButtonBox*> (button->parent()))) 352 break;353 return button;351 return button; 352 return NULL; 354 353 } 355 354
Note:
See TracChangeset
for help on using the changeset viewer.