VirtualBox

Ignore:
Timestamp:
Jul 1, 2020 10:48:57 AM (4 years ago)
Author:
vboxsync
Message:

DnD/Main: Renamed internal send/receive data task classes to unify naming.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp

    r85019 r85020  
    7474 * a worker thread.
    7575 */
    76 class SendDataTask : public GuestDnDTargetTask
     76class GuestDnDSendDataTask : public GuestDnDTargetTask
    7777{
    7878public:
    7979
    80     SendDataTask(GuestDnDTarget *pTarget, GuestDnDSendCtx *pCtx)
     80    GuestDnDSendDataTask(GuestDnDTarget *pTarget, GuestDnDSendCtx *pCtx)
    8181        : GuestDnDTargetTask(pTarget),
    8282          mpCtx(pCtx)
     
    9090    }
    9191
    92     virtual ~SendDataTask(void)
     92    virtual ~GuestDnDSendDataTask(void)
    9393    {
    9494        if (mpCtx)
     
    564564
    565565/* static */
    566 void GuestDnDTarget::i_sendDataThreadTask(SendDataTask *pTask)
     566void GuestDnDTarget::i_sendDataThreadTask(GuestDnDSendDataTask *pTask)
    567567{
    568568    LogFlowFunc(("pTask=%p\n", pTask));
     
    632632        return hr;
    633633
    634     SendDataTask *pTask = NULL;
     634    GuestDnDSendDataTask *pTask = NULL;
    635635    GuestDnDSendCtx *pSendCtx = NULL;
    636636
     
    646646
    647647        /* pTask is responsible for deletion of pSendCtx after creating */
    648         pTask = new SendDataTask(this, pSendCtx);
     648        pTask = new GuestDnDSendDataTask(this, pSendCtx);
    649649        if (!pTask->isOk())
    650650        {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette