Changeset 85729 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Aug 12, 2020 7:55:32 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostUpdateImpl.cpp
r85728 r85729 1 /* $Id :*/1 /* $Id$ */ 2 2 /** @file 3 3 * IHostUpdate COM class implementations. … … 79 79 }; 80 80 81 /* static */82 81 void HostUpdate::UpdateCheckTask::handler() 83 82 { … … 93 92 } 94 93 95 /* static */ 96 Utf8Str HostUpdate::platformInfo() 94 Utf8Str HostUpdate::i_platformInfo() 97 95 { 98 96 /* Prepare platform report: */ … … 258 256 } 259 257 260 /* static */261 258 HRESULT HostUpdate::i_checkForVBoxUpdate() 262 259 { … … 351 348 return setErrorVrc(rc, tr("%s: IVirtualBox::version() failed: %Rrc"), __FUNCTION__, rc); 352 349 353 Utf8StrFmt const strUserAgent("VirtualBox %ls <%s>", version.raw(), HostUpdate:: platformInfo().c_str());350 Utf8StrFmt const strUserAgent("VirtualBox %ls <%s>", version.raw(), HostUpdate::i_platformInfo().c_str()); 354 351 LogRelFunc(("userAgent = %s\n", strUserAgent.c_str())); 355 352 … … 419 416 } 420 417 421 /* static */422 418 HRESULT HostUpdate::i_updateCheckTask(UpdateCheckTask *pTask) 423 419 {
Note:
See TracChangeset
for help on using the changeset viewer.