Changeset 94714 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 27, 2022 7:41:12 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r94643 r94714 834 834 systemProperties->COMGETTER(DefaultVRDEExtPack)(str.asOutParam()); 835 835 RTPrintf(List::tr("Remote desktop ExtPack: %ls\n"), str.raw()); 836 systemProperties->COMGETTER(DefaultCryptoExtPack)(str.asOutParam()); 837 RTPrintf(List::tr("VM encryption ExtPack: %ls\n"), str.raw()); 836 838 systemProperties->COMGETTER(LogHistoryCount)(&ulValue); 837 839 RTPrintf(List::tr("Log history count: %u\n"), ulValue); … … 1213 1215 Bstr bstrVrdeModule; 1214 1216 CHECK_ERROR2I_STMT(extPacks[i], COMGETTER(VRDEModule)(bstrVrdeModule.asOutParam()),hrc=hrcCheck; bstrVrdeModule.setNull()); 1217 Bstr bstrCryptoModule; 1218 CHECK_ERROR2I_STMT(extPacks[i], COMGETTER(CryptoModule)(bstrCryptoModule.asOutParam()),hrc=hrcCheck; bstrCryptoModule.setNull()); 1215 1219 BOOL fUsable; 1216 1220 CHECK_ERROR2I_STMT(extPacks[i], COMGETTER(Usable)(&fUsable), hrc = hrcCheck; fUsable = FALSE); … … 1223 1227 RTPrintf(List::tr( 1224 1228 "Pack no.%2zu: %ls\n" 1225 "Version: %ls\n" 1226 "Revision: %u\n" 1227 "Edition: %ls\n" 1228 "Description: %ls\n" 1229 "VRDE Module: %ls\n" 1230 "Usable: %RTbool\n" 1231 "Why unusable: %ls\n"), 1229 "Version: %ls\n" 1230 "Revision: %u\n" 1231 "Edition: %ls\n" 1232 "Description: %ls\n" 1233 "VRDE Module: %ls\n" 1234 "Crypto Module: %ls\n" 1235 "Usable: %RTbool\n" 1236 "Why unusable: %ls\n"), 1232 1237 i, bstrName.raw(), 1233 1238 bstrVersion.raw(), … … 1236 1241 bstrDesc.raw(), 1237 1242 bstrVrdeModule.raw(), 1243 bstrCryptoModule.raw(), 1238 1244 fUsable != FALSE, 1239 1245 bstrWhy.raw());
Note:
See TracChangeset
for help on using the changeset viewer.