VirtualBox

Changeset 71254 in vbox for trunk/src/VBox/Main/src-client


Ignore:
Timestamp:
Mar 7, 2018 11:46:27 AM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
121172
Message:

Build fix.

File:
1 edited

Legend:

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

    r71253 r71254  
    24522452        return setError(E_INVALIDARG, tr("No destination specified"));
    24532453
    2454     FileCopyFlag_T fFlags = FileCopyFlag_None;
     2454    uint32_t fFlags = FileCopyFlag_None;
    24552455    if (aFlags.size())
    24562456    {
     
    24722472        try
    24732473        {
    2474             pTask = new SessionTaskCopyFileFrom(this /* GuestSession */, aSource, aDest, fFlags);
     2474            pTask = new SessionTaskCopyFileFrom(this /* GuestSession */, aSource, aDest, (FileCopyFlag_T)fFlags);
    24752475        }
    24762476        catch(...)
     
    25272527        return setError(E_INVALIDARG, tr("No destination specified"));
    25282528
    2529     FileCopyFlag_T fFlags = FileCopyFlag_None;
     2529    uint32_t fFlags = FileCopyFlag_None;
    25302530    if (aFlags.size())
    25312531    {
     
    25472547        try
    25482548        {
    2549             pTask = new SessionTaskCopyFileTo(this /* GuestSession */, aSource, aDest, fFlags);
     2549            pTask = new SessionTaskCopyFileTo(this /* GuestSession */, aSource, aDest, (FileCopyFlag_T)fFlags);
    25502550        }
    25512551        catch(...)
Note: See TracChangeset for help on using the changeset viewer.

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