Changeset 46072 in vbox
- Timestamp:
- May 14, 2013 3:54:34 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85747
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r46064 r46072 162 162 NOREF(uScreenId); 163 163 *pbFinished = FALSE; 164 lock(); 164 lock(); /* See comment in setView(). */ 165 165 if (m_pMachineView) 166 166 QApplication::postEvent(m_pMachineView, … … 183 183 * So we have to post an async event to perform update operation. 184 184 * Later the event will be replaced by the corresponding signal stuff: */ 185 QApplication::postEvent(m_pMachineView, new UIRepaintEvent(uX, uY, uW, uH)); 185 lock(); /* See comment in setView(). */ 186 if (m_pMachineView) 187 QApplication::postEvent(m_pMachineView, new UIRepaintEvent(uX, uY, uW, uH)); 188 unlock(); 189 186 190 return S_OK; 187 191 } … … 208 212 *pbSupported = TRUE; 209 213 210 lock(); 214 lock(); /* See comment in setView(). */ 211 215 QSize screen; 212 216 if (m_pMachineView) … … 259 263 ++ rects; 260 264 } 261 lock(); 265 lock(); /* See comment in setView(). */ 262 266 if (m_pMachineView) 263 267 QApplication::postEvent(m_pMachineView, new UISetRegionEvent(reg));
Note:
See TracChangeset
for help on using the changeset viewer.