Changeset 54517 in vbox
- Timestamp:
- Feb 25, 2015 7:53:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r54459 r54517 983 983 this, SLOT(sltReset())); 984 984 connect(actionPool()->action(UIActionIndexRT_M_Machine_S_Save), SIGNAL(triggered()), 985 this, SLOT(sltSaveState()) );985 this, SLOT(sltSaveState()), Qt::QueuedConnection); 986 986 connect(actionPool()->action(UIActionIndexRT_M_Machine_S_Shutdown), SIGNAL(triggered()), 987 987 this, SLOT(sltShutdown())); 988 988 connect(actionPool()->action(UIActionIndexRT_M_Machine_S_PowerOff), SIGNAL(triggered()), 989 this, SLOT(sltPowerOff()) );989 this, SLOT(sltPowerOff()), Qt::QueuedConnection); 990 990 #ifdef RT_OS_DARWIN 991 991 connect(actionPool()->action(UIActionIndex_M_Application_S_Close), SIGNAL(triggered()), 992 this, SLOT(sltClose()) );992 this, SLOT(sltClose()), Qt::QueuedConnection); 993 993 #else /* !RT_OS_DARWIN */ 994 994 connect(actionPool()->action(UIActionIndexRT_M_Machine_S_Close), SIGNAL(triggered()), 995 this, SLOT(sltClose()) );995 this, SLOT(sltClose()), Qt::QueuedConnection); 996 996 #endif /* !RT_OS_DARWIN */ 997 997
Note:
See TracChangeset
for help on using the changeset viewer.