Changeset 102798 in vbox
- Timestamp:
- Jan 9, 2024 3:01:53 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerGuestTable.cpp
r102548 r102798 991 991 if (m_comGuestSession.isNull()) 992 992 return; 993 993 994 KPathStyle pathStyle = m_comGuestSession.GetPathStyle(); 994 995 if (pathStyle != KPathStyle_DOS) … … 998 999 * so we enumarate them by using CGuestSession::DirectoryExists() */ 999 1000 m_driveLetterList.clear(); 1001 #if 0 1000 1002 for (int i = 'A'; i <= 'Z'; ++i) 1001 1003 { … … 1006 1008 m_driveLetterList.push_back(path); 1007 1009 } 1010 #endif 1011 1012 QVector<QString> mountPoints = m_comGuestSession.GetMountPoints(); 1013 foreach (const QString &strPoint, mountPoints) 1014 m_driveLetterList.push_back(UIPathOperations::replaceDosDelimeter(strPoint)); 1008 1015 } 1009 1016
Note:
See TracChangeset
for help on using the changeset viewer.