- Timestamp:
- Dec 16, 2010 10:53:50 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69010
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r34794 r35171 336 336 , mfSnapshotFolderSizeWarningShown(false) 337 337 , mfSnapshotFolderExt4WarningShown(false) 338 , mfSnapshotFolderDiskTypeShown(false) 338 339 , mpVmm2UserMethods(NULL) 339 340 , m_pVMMDev(NULL) -
trunk/src/VBox/Main/ConsoleImpl2.cpp
r34931 r35171 2065 2065 */ 2066 2066 static const char *s_pszUsbExtPackName = "Oracle VM VirtualBox Extension Pack"; 2067 # ifdef VBOX_WITH_EXTPACK 2067 2068 if (pConsole->mptrExtPackManager->isExtPackUsable(s_pszUsbExtPackName)) 2069 # endif 2068 2070 { 2069 2071 InsertConfigNode(pDevices, "usb-ehci", &pDev); … … 2087 2089 InsertConfigInteger(pCfg, "Last", 0); 2088 2090 } 2091 # ifdef VBOX_WITH_EXTPACK 2089 2092 else 2090 2093 { … … 2106 2109 s_pszUsbExtPackName); 2107 2110 } 2111 # endif 2108 2112 } 2109 2113 #endif … … 2772 2776 * still don't have a snapshot folder. */ 2773 2777 (void)RTFsQueryType(utfSnap.c_str(), &enmFsTypeSnap); 2778 if (!mfSnapshotFolderDiskTypeShown) 2779 { 2780 LogRel(("File system of '%s' (snapshots) is %s\n", utfSnap.c_str(), RTFsTypeName(enmFsTypeSnap))); 2781 mfSnapshotFolderDiskTypeShown = true; 2782 } 2774 2783 LogRel(("File system of '%s' is %s\n", utfFile.c_str(), RTFsTypeName(enmFsTypeFile))); 2775 2784 LONG64 i64Size; -
trunk/src/VBox/Main/include/ConsoleImpl.h
r35157 r35171 653 653 /** true if we already showed the snapshot folder ext4/xfs bug warning. */ 654 654 bool mfSnapshotFolderExt4WarningShown : 1; 655 /** true if we already listed the disk type of the snapshot folder. */ 656 bool mfSnapshotFolderDiskTypeShown : 1; 655 657 656 658 /** Pointer to the VMM -> User (that's us) callbacks.
Note:
See TracChangeset
for help on using the changeset viewer.