VirtualBox

Changeset 58336 in vbox for trunk/src/VBox/Additions/WINNT


Ignore:
Timestamp:
Oct 20, 2015 12:46:38 PM (9 years ago)
Author:
vboxsync
Message:

DnD/VBoxTray: Not needed anymore.

Location:
trunk/src/VBox/Additions/WINNT/VBoxTray
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.h

    r57741 r58336  
    114114    LONG                  mRefCount;
    115115    VBoxDnDWnd           *mpWndParent;
    116     VBGLR3GUESTDNDCMDCTX  mDnDCtx;
    117116    DWORD                 mdwCurEffect;
    118117    uint32_t              muCurAction;
     
    155154    LONG                  mRefCount;
    156155    VBoxDnDWnd           *mpWndParent;
    157     VBGLR3GUESTDNDCMDCTX  mDnDCtx;
    158156    DWORD                 mdwCurEffect;
    159157    /** Copy of the data object's FORMATETC struct.
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropSource.cpp

    r55422 r58336  
    3838      muCurAction(DND_IGNORE_ACTION)
    3939{
    40     int rc = VbglR3DnDConnect(&mDnDCtx);
    41 
    42     LogFlowFunc(("rc=%Rrc\n", rc));
     40    LogFlowFuncEnter();
    4341}
    4442
    4543VBoxDnDDropSource::~VBoxDnDDropSource(void)
    4644{
    47     int rc = VbglR3DnDDisconnect(&mDnDCtx);
    48 
    49     LogFlowFunc(("rc=%Rrc, mRefCount=%RI32\n", rc, mRefCount));
     45    LogFlowFunc(("mRefCount=%RI32\n", mRefCount));
    5046}
    5147
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropTarget.cpp

    r57297 r58336  
    4242      hEventDrop(NIL_RTSEMEVENT)
    4343{
    44     int rc = VbglR3DnDConnect(&mDnDCtx);
    45     if (RT_SUCCESS(rc))
    46         rc = RTSemEventCreate(&hEventDrop);
    47 
    48     LogFlowFunc(("clientID=%RU32, rc=%Rrc\n", mDnDCtx.uClientID, rc));
     44    int rc = RTSemEventCreate(&hEventDrop);
     45    LogFlowFunc(("rc=%Rrc\n", rc));
    4946}
    5047
     
    5350    reset();
    5451
    55     int rc2 = VbglR3DnDDisconnect(&mDnDCtx);
    56     AssertRC(rc2);
    57     rc2 = RTSemEventDestroy(hEventDrop);
     52    int rc2 = RTSemEventDestroy(hEventDrop);
    5853    AssertRC(rc2);
    5954
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