- Timestamp:
- Feb 25, 2010 1:06:42 PM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBOverlay.cpp
r26719 r26793 4779 4779 4780 4780 4781 VBoxVHWACommandElementProcessor::VBoxVHWACommandElementProcessor( VBoxConsoleView *aView) :4781 VBoxVHWACommandElementProcessor::VBoxVHWACommandElementProcessor(QObject *pParent) : 4782 4782 mpFirstEvent (NULL), 4783 4783 mpLastEvent (NULL), 4784 m_pParent(pParent), 4784 4785 mbNewEvent (false), 4785 4786 mbProcessingList (false) … … 4787 4788 int rc = RTCritSectInit(&mCritSect); 4788 4789 AssertRC(rc); 4789 4790 mView = aView;4791 4790 4792 4791 for(int i = RT_ELEMENTS(mElementsBuffer) - 1; i >= 0; i--) … … 4874 4873 RTCritSectLeave(&mCritSect); 4875 4874 /* 10. post event */ 4876 QApplication::postEvent (m View, pCurrentEvent);4875 QApplication::postEvent (m_pParent, pCurrentEvent); 4877 4876 } 4878 4877 -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBOverlay.h
r26719 r26793 1305 1305 { 1306 1306 public: 1307 VBoxVHWACommandElementProcessor( class VBoxConsoleView *aView);1307 VBoxVHWACommandElementProcessor(QObject *pParent); 1308 1308 ~VBoxVHWACommandElementProcessor(); 1309 1309 void postCmd(VBOXVHWA_PIPECMD_TYPE aType, void * pvData, uint32_t flags); … … 1315 1315 class VBoxVHWACommandProcessEvent *mpFirstEvent; 1316 1316 class VBoxVHWACommandProcessEvent *mpLastEvent; 1317 class VBoxConsoleView *mView;1317 QObject *m_pParent; 1318 1318 bool mbNewEvent; 1319 1319 bool mbProcessingList;
Note:
See TracChangeset
for help on using the changeset viewer.