Changeset 29007 in vbox for trunk/src/VBox
- Timestamp:
- May 4, 2010 11:49:23 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61043
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r28931 r29007 4493 4493 { 4494 4494 QWidgetList list = QApplication::topLevelWidgets(); 4495 QWidget* w = NULL; 4496 foreach(w, list) 4495 foreach(QWidget *w, list) 4497 4496 { 4498 4497 if ((!aName || strcmp (w->objectName().toAscii().constData(), aName) == 0) && 4499 4498 (!aClassName || strcmp (w->metaObject()->className(), aClassName) == 0)) 4500 break;4499 return w; 4501 4500 if (aRecursive) 4502 4501 { 4503 4502 w = findWidget (w, aName, aClassName, aRecursive); 4504 4503 if (w) 4505 break;4504 return w; 4506 4505 } 4507 4506 } 4508 return w;4507 return NULL; 4509 4508 } 4510 4509 … … 4512 4511 * Please note that this call is recursivly. */ 4513 4512 QList<QWidget *> list = qFindChildren<QWidget *> (aParent, aName); 4514 QWidget *child = NULL; 4515 foreach(child, list) 4513 foreach(QWidget *child, list) 4516 4514 { 4517 4515 if (!aClassName || strcmp (child->metaObject()->className(), aClassName) == 0) 4518 break;4519 } 4520 return child;4516 return child; 4517 } 4518 return NULL; 4521 4519 } 4522 4520
Note:
See TracChangeset
for help on using the changeset viewer.