- Timestamp:
- Dec 2, 2013 6:42:44 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 91044
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostImpl.cpp
r49742 r49743 835 835 com::SafeArray<BSTR> resultArr; 836 836 resultArr.setNull(); 837 HRESULT rc = m->hostDnsMonitorProxy. COMGETTER(NameServers)(ComSafeArrayAsOutParam(resultArr));837 HRESULT rc = m->hostDnsMonitorProxy.GetNameServers(ComSafeArrayAsOutParam(resultArr)); 838 838 if (FAILED(rc)) return rc; 839 839 aNameServers.resize(resultArr.size()); … … 852 852 { 853 853 BSTR bstr; 854 HRESULT rc = m->hostDnsMonitorProxy. COMGETTER(DomainName)(&bstr);854 HRESULT rc = m->hostDnsMonitorProxy.GetDomainName(&bstr); 855 855 if SUCCEEDED(rc) 856 856 aDomainName = com::Utf8Str(bstr); … … 869 869 com::SafeArray<BSTR> resultArr; 870 870 resultArr.setNull(); 871 HRESULT rc = m->hostDnsMonitorProxy. COMGETTER(SearchStrings)(ComSafeArrayAsOutParam(resultArr));871 HRESULT rc = m->hostDnsMonitorProxy.GetSearchStrings(ComSafeArrayAsOutParam(resultArr)); 872 872 if (FAILED(rc)) return rc; 873 873 aSearchStrings.resize(resultArr.size()); … … 2056 2056 #elif defined(RT_OS_SOLARIS) 2057 2057 # ifdef VBOX_USE_LIBHAL 2058 if (! getDVDInfoFromHal(list))2058 if (!i_getDVDInfoFromHal(list)) 2059 2059 # endif 2060 2060 { 2061 getDVDInfoFromDevTree(list);2061 i_getDVDInfoFromDevTree(list); 2062 2062 } 2063 2063 … … 2408 2408 * Works on Solaris 10 as well as OpenSolaris without depending on libhal. 2409 2409 */ 2410 void Host:: getDVDInfoFromDevTree(std::list<ComObjPtr<Medium> > &list)2410 void Host::i_getDVDInfoFromDevTree(std::list<ComObjPtr<Medium> > &list) 2411 2411 { 2412 2412 PSOLARISDVD pDrives = NULL; … … 2439 2439 * @retval list drives found will be attached to this list 2440 2440 */ 2441 bool Host:: getDVDInfoFromHal(std::list<ComObjPtr<Medium> > &list)2441 bool Host::i_getDVDInfoFromHal(std::list<ComObjPtr<Medium> > &list) 2442 2442 { 2443 2443 bool halSuccess = false;
Note:
See TracChangeset
for help on using the changeset viewer.