Changeset 80795 in vbox
- Timestamp:
- Sep 15, 2019 4:41:48 PM (5 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/manager/details
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsGroup.h
r80784 r80795 84 84 /** @} */ 85 85 86 p ublicslots:86 protected slots: 87 87 88 88 /** @name Item stuff. -
trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsItem.cpp
r80794 r80795 280 280 , m_iStepNumber(iStepNumber) 281 281 { 282 /* Prepare connections (2nd should always be old style, polymorph, cause parent can be set or group): */282 /* Prepare connections: */ 283 283 connect(qobject_cast<UIDetailsItem*>(pBuildObject), &UIDetailsItem::sigBuildDone, 284 284 this, &UIPrepareStep::sltStepDone, 285 285 Qt::QueuedConnection); 286 connect(this, SIGNAL(sigStepDone(QUuid, int)),287 pParent, SLOT(sltBuildStep(QUuid, int)),286 connect(this, &UIPrepareStep::sigStepDone, 287 qobject_cast<UIDetailsItem*>(pParent), &UIDetailsItem::sltBuildStep, 288 288 Qt::QueuedConnection); 289 289 } -
trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsItem.h
r79842 r80795 129 129 /** @} */ 130 130 131 p rotectedslots:131 public slots: 132 132 133 133 /** @name Item stuff.
Note:
See TracChangeset
for help on using the changeset viewer.