Changeset 17192 in vbox for trunk/src/VBox/Frontends/VBoxSDL
- Timestamp:
- Feb 27, 2009 9:17:19 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43482
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r16867 r17192 5 5 6 6 /* 7 * Copyright (C) 2006-200 7Sun Microsystems, Inc.7 * Copyright (C) 2006-2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1772 1772 ComPtr <IHost> host; 1773 1773 CHECK_ERROR_BREAK (virtualBox, COMGETTER(Host)(host.asOutParam())); 1774 ComPtr <IHostDVDDriveCollection> coll;1775 CHECK_ERROR_BREAK (host, COMGETTER(DVDDrives)( coll.asOutParam()));1774 SafeIfaceArray <IHostDVDDrive> coll; 1775 CHECK_ERROR_BREAK (host, COMGETTER(DVDDrives)(ComSafeArrayAsOutParam(coll))); 1776 1776 ComPtr <IHostDVDDrive> hostDrive; 1777 rc = coll->FindByName (medium, hostDrive.asOutParam());1777 rc = host->FindHostDVDDrive (medium, hostDrive.asOutParam()); 1778 1778 if (SUCCEEDED (rc)) 1779 1779 {
Note:
See TracChangeset
for help on using the changeset viewer.