Changeset 41842 in vbox for trunk/include/VBox
- Timestamp:
- Jun 20, 2012 11:46:31 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78670
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/settings.h
r41371 r41842 670 670 { 671 671 BandwidthGroup() 672 : cMax MbPerSec(0),672 : cMaxBytesPerSec(0), 673 673 enmType(BandwidthGroupType_Null) 674 674 {} … … 677 677 { 678 678 return ( (strName == i.strName) 679 && (cMax MbPerSec == i.cMaxMbPerSec)679 && (cMaxBytesPerSec == i.cMaxBytesPerSec) 680 680 && (enmType == i.enmType)); 681 681 } 682 682 683 683 com::Utf8Str strName; 684 uint 32_t cMaxMbPerSec;684 uint64_t cMaxBytesPerSec; 685 685 BandwidthGroupType_T enmType; 686 686 };
Note:
See TracChangeset
for help on using the changeset viewer.