Changeset 36107 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Feb 28, 2011 6:24:32 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70264
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/PciDeviceAttachmentImpl.cpp
r35885 r36107 25 25 struct PciDeviceAttachment::Data 26 26 { 27 Data(IMachine *aParent, 28 const Bstr &aDevName, 27 Data(const Bstr &aDevName, 29 28 LONG aHostAddress, 30 29 LONG aGuestAddress, … … 33 32 fPhysical(afPhysical) 34 33 { 35 (void)aParent;36 34 DevName = aDevName; 37 35 } … … 67 65 BOOL fPhysical) 68 66 { 69 m = new Data(aParent, aDevName, aHostAddress, aGuestAddress, fPhysical); 67 (void)aParent; 68 m = new Data(aDevName, aHostAddress, aGuestAddress, fPhysical); 70 69 71 70 return m != NULL ? S_OK : E_FAIL;
Note:
See TracChangeset
for help on using the changeset viewer.