Changeset 16867 in vbox for trunk/src/VBox/Main/ConsoleImpl2.cpp
- Timestamp:
- Feb 17, 2009 5:00:56 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r16856 r16867 577 577 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK(); 578 578 579 ComPtr<IFloppyImage 2> floppyImage;579 ComPtr<IFloppyImage> floppyImage; 580 580 hrc = floppyDrive->GetImage(floppyImage.asOutParam()); H(); 581 581 if (floppyImage) … … 867 867 /* Attach the hard disks */ 868 868 { 869 com::SafeIfaceArray <IHardDisk2Attachment> atts;869 com::SafeIfaceArray<IHardDiskAttachment> atts; 870 870 hrc = pMachine-> 871 COMGETTER(HardDisk 2Attachments) (ComSafeArrayAsOutParam (atts)); H();871 COMGETTER(HardDiskAttachments) (ComSafeArrayAsOutParam (atts)); H(); 872 872 873 873 for (size_t i = 0; i < atts.size(); ++ i) 874 874 { 875 ComPtr <IHardDisk2> hardDisk;875 ComPtr<IHardDisk> hardDisk; 876 876 hrc = atts [i]->COMGETTER(HardDisk) (hardDisk.asOutParam()); H(); 877 877 StorageBus_T enmBus; … … 986 986 987 987 /* Create an inversed tree of parents. */ 988 ComPtr <IHardDisk2> parentHardDisk = hardDisk;988 ComPtr<IHardDisk> parentHardDisk = hardDisk; 989 989 for (PCFGMNODE pParent = pCfg;;) 990 990 {
Note:
See TracChangeset
for help on using the changeset viewer.