Changeset 94650 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Apr 20, 2022 11:52:14 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/UpdateAgentImpl.cpp
r94648 r94650 55 55 { 56 56 public: 57 UpdateAgentTask(UpdateAgent *aThat, Progress *aProgress)57 UpdateAgentTask(UpdateAgentBase *aThat, Progress *aProgress) 58 58 : m_pParent(aThat) 59 59 , m_pProgress(aProgress) … … 67 67 68 68 /** Weak pointer to parent (update agent). */ 69 UpdateAgent 69 UpdateAgentBase *m_pParent; 70 70 /** Smart pointer to the progress object for this job. */ 71 71 ComObjPtr<Progress> m_pProgress; … … 76 76 void UpdateAgentTask::handler(void) 77 77 { 78 UpdateAgent *pUpdateAgent = this->m_pParent;78 UpdateAgentBase *pUpdateAgent = this->m_pParent; 79 79 AssertPtr(pUpdateAgent); 80 80 … … 92 92 *********************************************************************************************************************************/ 93 93 UpdateAgent::UpdateAgent() 94 : m_VirtualBox(NULL)95 , m(new settings::UpdateAgent)96 94 { 97 95 } … … 377 375 378 376 /* static */ 379 Utf8Str UpdateAgent ::i_getPlatformInfo(void)377 Utf8Str UpdateAgentBase::i_getPlatformInfo(void) 380 378 { 381 379 /* Prepare platform report: */
Note:
See TracChangeset
for help on using the changeset viewer.