Changeset 27820 in vbox for trunk/src/VBox/Main/GuestOSTypeImpl.cpp
- Timestamp:
- Mar 30, 2010 12:37:16 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59489
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestOSTypeImpl.cpp
r27382 r27820 358 358 } 359 359 360 STDMETHODIMP GuestOSType::COMGETTER(RecommendedRtcUseUtc) (BOOL *aRecommendedRtcUseUtc) 361 { 362 CheckComArgOutPointerValid(aRecommendedRtcUseUtc); 363 364 AutoCaller autoCaller(this); 365 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 366 367 /* HID type is constant during life time, no need to lock */ 368 *aRecommendedRtcUseUtc = !!(mOSHint & VBOXOSHINT_RTCUTC); 369 370 return S_OK; 371 } 372 360 373 /* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note:
See TracChangeset
for help on using the changeset viewer.