VirtualBox

Changeset 17696 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Mar 11, 2009 1:49:24 PM (16 years ago)
Author:
vboxsync
Message:

OVF: use ProgressErrorInfo for fetching the error info

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/ApplianceImpl.cpp

    r17689 r17696  
    21672167                        if (FAILED(vrc))
    21682168                        {
    2169                             com::ErrorInfo info(progress);
    2170                             const char *pcsz = Utf8Str(info.getText()).c_str();
     2169                            ProgressErrorInfo info(progress);
     2170                            Utf8Str str(info.getText());
     2171                            const char *pcsz = str.c_str();
    21712172                            HRESULT rc2 = setError(vrc,
    21722173                                                   pcsz);
     
    29002901            if (FAILED(vrc))
    29012902            {
    2902                 com::ErrorInfo info(pProgress2);
    2903                 const char *pcsz = Utf8Str(info.getText()).c_str();
     2903                ProgressErrorInfo info(pProgress2);
     2904                Utf8Str str(info.getText());
     2905                const char *pcsz = str.c_str();
    29042906                HRESULT rc2 = setError(vrc, pcsz);
    29052907                throw rc2;
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