Changeset 31300 in vbox for trunk/src/VBox
- Timestamp:
- Aug 2, 2010 1:22:27 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64327
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MediumImpl.cpp
r31281 r31300 3232 3232 3233 3233 return strFormat; 3234 } 3235 3236 /** 3237 * Returns the medium device type. Must have caller + locking! 3238 * @return 3239 */ 3240 DeviceType_T Medium::getDeviceType() const 3241 { 3242 return m->devType; 3234 3243 } 3235 3244 -
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r31296 r31300 2825 2825 if (found) 2826 2826 { 2827 if (pMedium->get Type() != mediumType)2827 if (pMedium->getDeviceType() != mediumType) 2828 2828 { 2829 2829 if (mediumType == DeviceType_DVD) -
trunk/src/VBox/Main/include/MediumImpl.h
r31236 r31300 164 164 const ComObjPtr<MediumFormat> & getMediumFormat() const; 165 165 uint64_t getSize() const; 166 DeviceType_T getDeviceType() const; 166 167 MediumType_T getType() const; 167 168 Utf8Str getName();
Note:
See TracChangeset
for help on using the changeset viewer.