Changeset 84201 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 8, 2020 10:30:03 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualMachineItemCloud.cpp
r84196 r84201 129 129 /* Determine whether VM is accessible: */ 130 130 m_fAccessible = m_comCloudMachine.GetAccessible(); 131 CVirtualBoxErrorInfo comInfo = m_comCloudMachine.GetAccessError(); 132 if (!m_fAccessible && comInfo.isNull()) 133 LogRel(("UIVirtualMachineItemCloud::recache: Error info is NULL for inaccessible VM.\n")); 134 m_strAccessError = !m_fAccessible && !comInfo.isNull() ? UIErrorString::formatErrorInfo(comInfo) : QString(); 131 m_strAccessError = !m_fAccessible ? UIErrorString::formatErrorInfo(m_comCloudMachine.GetAccessError()) : QString(); 135 132 136 133 /* Determine VM OS type: */
Note:
See TracChangeset
for help on using the changeset viewer.