Changeset 36527 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 4, 2011 1:16:09 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70949
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp
r36303 r36527 1928 1928 bool fEnable = false; 1929 1929 bool fFlagsPresent = false; 1930 iprt::MiniString strFlags;1930 RTCString strFlags; 1931 1931 bool fGroupsPresent = false; 1932 iprt::MiniString strGroups;1932 RTCString strGroups; 1933 1933 bool fDestsPresent = false; 1934 iprt::MiniString strDests;1934 RTCString strDests; 1935 1935 1936 1936 static const RTGETOPTDEF s_aOptions[] = -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r33540 r36527 256 256 257 257 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)) 261 261 pszAbsFilePath = RTStrDup(strOvfFilename.c_str()); 262 262 else … … 928 928 929 929 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)) 933 933 pszAbsFilePath = RTStrDup(strOutputFile.c_str()); 934 934 else -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp
r35823 r36527 336 336 { 337 337 Utf8Str strFormat(format); 338 if (strFormat.compare("vmdk", iprt::MiniString::CaseInsensitive) == 0)338 if (strFormat.compare("vmdk", RTCString::CaseInsensitive) == 0) 339 339 strName.append(".vmdk"); 340 else if (strFormat.compare("vhd", iprt::MiniString::CaseInsensitive) == 0)340 else if (strFormat.compare("vhd", RTCString::CaseInsensitive) == 0) 341 341 strName.append(".vhd"); 342 342 else
Note:
See TracChangeset
for help on using the changeset viewer.