Skip to content

Commit 7888061

Browse files
authored
Merge pull request #4223 from MicrosoftDocs/main638013656556537349sync_temp
Repo sync for protected CLA branch
2 parents ccb6ab9 + 83d7da5 commit 7888061

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

docs/build-insights/reference/sdk/functions/relog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,6 @@ The input trace is passed through the analyzer group *numberOfAnalysisPasses* ti
7777
7878
The relogging of system events like CPU samples from within a relogger class isn't supported. Use the *systemEventsRetentionFlags* parameter to decide which system events to keep in the output trace.
7979
80+
The `relog` function depends on the COM API. You must call `CoInitialize` before you call `relog`. Call `CoUninitialize` once `relog` has finished. If you call `relog` without a call to `CoInitialize` first, you'll get error code 9 (`RESULT_CODE_FAILURE_START_RELOGGER`).
81+
8082
::: moniker-end

docs/mfc/reference/cmfcpropertygridproperty-class.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1427,17 +1427,7 @@ Sets the value of a property grid property.
14271427
```cpp
14281428
virtual void SetValue(const _variant_t& varValue);
14291429
```
1430-
Example:
1431-
```
1432-
void SetPropBarValue( UINT propId, const DWORD& barPropDwordValue )
1433-
{
1434-
auto property = propertiesGridCtrlList.FindItemByData( propId );
1435-
if( property )
1436-
{
1437-
property->SetValue( static_cast< _variant_t >( barPropDwordValue == 1 ) ); // sets property bar value to true or false depending on dword value
1438-
}
1439-
}
1440-
```
1430+
14411431
### Parameters
14421432
14431433
*`varValue`*\

docs/standard-library/basic-istream-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ See the example for [`basic_ifstream` Class](../standard-library/basic-ifstream-
119119
|[`swap`](#swap)|Exchanges this `basic_istream` object for the provided `basic_istream` object parameter.|
120120
|[`sync`](#sync)|Synchronizes the stream's associated input device with the stream's buffer.|
121121
|[`tellg`](#tellg)|Reports the current read position in the stream.|
122-
|[u`nget](#unget)|Puts the most recently read character back into the stream.|
122+
|[`unget`](#unget)|Puts the most recently read character back into the stream.|
123123
124124
### Operators
125125
@@ -161,7 +161,7 @@ A `basic_istream` object to copy.
161161

162162
The first constructor initializes the base class by calling `init(strbuf)`. It also stores zero in the extraction count. For more information, see [`init`](../standard-library/basic-ios-class.md#init). And for more information about this extraction count, see the Remarks section of the [`basic_istream` Class](../standard-library/basic-istream-class.md) overview.
163163

164-
The second constructor initializes the base class by calling `move(right)`. It also stores `right.gcount()` in the extraction count and stores zero in the extraction count for *`right`**.
164+
The second constructor initializes the base class by calling `move(right)`. It also stores `right.gcount()` in the extraction count and stores zero in the extraction count for *`right`*.
165165

166166
### Example
167167

0 commit comments

Comments
 (0)