VirtualBox

Changeset 36527 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Apr 4, 2011 1:16:09 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
70949
Message:

iprt::MiniString -> RTCString.

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp

    r36303 r36527  
    19281928    bool                fEnable        = false;
    19291929    bool                fFlagsPresent  = false;
    1930     iprt::MiniString    strFlags;
     1930    RTCString    strFlags;
    19311931    bool                fGroupsPresent = false;
    1932     iprt::MiniString    strGroups;
     1932    RTCString    strGroups;
    19331933    bool                fDestsPresent  = false;
    1934     iprt::MiniString    strDests;
     1934    RTCString    strDests;
    19351935
    19361936    static const RTGETOPTDEF s_aOptions[] =
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp

    r33540 r36527  
    256256
    257257        char *pszAbsFilePath;
    258         if (strOvfFilename.startsWith("S3://", iprt::MiniString::CaseInsensitive) ||
    259             strOvfFilename.startsWith("SunCloud://", iprt::MiniString::CaseInsensitive) ||
    260             strOvfFilename.startsWith("webdav://", iprt::MiniString::CaseInsensitive))
     258        if (strOvfFilename.startsWith("S3://", RTCString::CaseInsensitive) ||
     259            strOvfFilename.startsWith("SunCloud://", RTCString::CaseInsensitive) ||
     260            strOvfFilename.startsWith("webdav://", RTCString::CaseInsensitive))
    261261            pszAbsFilePath = RTStrDup(strOvfFilename.c_str());
    262262        else
     
    928928
    929929        char *pszAbsFilePath = 0;
    930         if (strOutputFile.startsWith("S3://", iprt::MiniString::CaseInsensitive) ||
    931             strOutputFile.startsWith("SunCloud://", iprt::MiniString::CaseInsensitive) ||
    932             strOutputFile.startsWith("webdav://", iprt::MiniString::CaseInsensitive))
     930        if (strOutputFile.startsWith("S3://", RTCString::CaseInsensitive) ||
     931            strOutputFile.startsWith("SunCloud://", RTCString::CaseInsensitive) ||
     932            strOutputFile.startsWith("webdav://", RTCString::CaseInsensitive))
    933933            pszAbsFilePath = RTStrDup(strOutputFile.c_str());
    934934        else
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp

    r35823 r36527  
    336336    {
    337337        Utf8Str strFormat(format);
    338         if (strFormat.compare("vmdk", iprt::MiniString::CaseInsensitive) == 0)
     338        if (strFormat.compare("vmdk", RTCString::CaseInsensitive) == 0)
    339339            strName.append(".vmdk");
    340         else if (strFormat.compare("vhd", iprt::MiniString::CaseInsensitive) == 0)
     340        else if (strFormat.compare("vhd", RTCString::CaseInsensitive) == 0)
    341341            strName.append(".vhd");
    342342        else
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