Changeset 103022 in vbox
- Timestamp:
- Jan 24, 2024 1:20:45 PM (10 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooser.cpp
r102838 r103022 274 274 275 275 /* Abstract Chooser-model connections: */ 276 connect(model(), &UIChooserModel::sigGroupSavingStateChanged, 277 this, &UIChooser::sigGroupSavingStateChanged); 276 278 connect(model(), &UIChooserModel::sigCloudMachineStateChange, 277 279 this, &UIChooser::sigCloudMachineStateChange); 278 connect(model(), &UIChooserModel::sigGroupSavingStateChanged,279 this, &UIChooser::sigGroupSavingStateChanged);280 280 connect(model(), &UIChooserModel::sigCloudUpdateStateChanged, 281 281 this, &UIChooser::sigCloudUpdateStateChanged); … … 322 322 323 323 /* Abstract Chooser-model connections: */ 324 disconnect(model(), &UIChooserModel::sigGroupSavingStateChanged, 325 this, &UIChooser::sigGroupSavingStateChanged); 324 326 disconnect(model(), &UIChooserModel::sigCloudMachineStateChange, 325 327 this, &UIChooser::sigCloudMachineStateChange); 326 disconnect(model(), &UIChooserModel::sigGroupSavingStateChanged,327 this, &UIChooser::sigGroupSavingStateChanged);328 328 disconnect(model(), &UIChooserModel::sigCloudUpdateStateChanged, 329 329 this, &UIChooser::sigCloudUpdateStateChanged); -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooser.h
r102838 r103022 51 51 signals: 52 52 53 /** @name Cloud machine stuff.54 * @{ */55 /** Notifies listeners about state change for cloud machine with certain @a uId. */56 void sigCloudMachineStateChange(const QUuid &uId);57 /** @} */58 59 53 /** @name Group saving stuff. 60 54 * @{ */ … … 65 59 /** @name Cloud update stuff. 66 60 * @{ */ 61 /** Notifies listeners about cloud machine state change. 62 * @param uId Brings the cloud machine ID. */ 63 void sigCloudMachineStateChange(const QUuid &uId); 64 67 65 /** Notifies listeners about cloud update state change. */ 68 66 void sigCloudUpdateStateChanged();
Note:
See TracChangeset
for help on using the changeset viewer.