Changeset 27329 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 12, 2010 2:06:25 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58755
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.cpp
r27328 r27329 130 130 /* Connect action handlers: */ 131 131 connect(m_pActionsPool->action(UIActionIndex_Toggle_Fullscreen), SIGNAL(triggered(bool)), 132 this, SLOT(sltGoToFullscreenMode()) );132 this, SLOT(sltGoToFullscreenMode()), Qt::QueuedConnection); 133 133 connect(m_pActionsPool->action(UIActionIndex_Toggle_Seamless), SIGNAL(triggered(bool)), 134 this, SLOT(sltGoToSeamlessMode()) );134 this, SLOT(sltGoToSeamlessMode()), Qt::QueuedConnection); 135 135 136 136 /* Initialize the logic object: */ … … 192 192 /* Connect action handlers: */ 193 193 connect(m_pActionsPool->action(UIActionIndex_Toggle_Fullscreen), SIGNAL(triggered(bool)), 194 this, SLOT(sltGoToNormalMode()) );194 this, SLOT(sltGoToNormalMode()), Qt::QueuedConnection); 195 195 connect(m_pActionsPool->action(UIActionIndex_Toggle_Seamless), SIGNAL(triggered(bool)), 196 this, SLOT(sltGoToSeamlessMode()) );196 this, SLOT(sltGoToSeamlessMode()), Qt::QueuedConnection); 197 197 198 198 /* Initialize the logic object: */ … … 254 254 /* Connect action handlers: */ 255 255 connect(m_pActionsPool->action(UIActionIndex_Toggle_Fullscreen), SIGNAL(triggered(bool)), 256 this, SLOT(sltGoToFullscreenMode()) );256 this, SLOT(sltGoToFullscreenMode()), Qt::QueuedConnection); 257 257 connect(m_pActionsPool->action(UIActionIndex_Toggle_Seamless), SIGNAL(triggered(bool)), 258 this, SLOT(sltGoToNormalMode()) );258 this, SLOT(sltGoToNormalMode()), Qt::QueuedConnection); 259 259 260 260 /* Initialize the logic object: */
Note:
See TracChangeset
for help on using the changeset viewer.