Skip to content

Commit d54b2d1

Browse files
authored
Merge pull request MicrosoftDocs#2302 from mikeblome/mb-cppcx-title
removed some instances of outdated branding Visual C++
2 parents e96e61f + c7d9ddc commit d54b2d1

27 files changed

+32
-31
lines changed

docs/cppcx/array-and-writeonlyarray-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,5 @@ In general, you should avoid exposing a `Platform::Array` type as a property in
8787
## See also
8888

8989
[Type System](../cppcx/type-system-c-cx.md)<br/>
90-
[Visual C++ Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
90+
[C++/CX Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
9191
[Namespaces Reference](../cppcx/namespaces-reference-c-cx.md)

docs/cppcx/attributes-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ The next example shows how to define a custom attribute and then initialize it w
4040
## See also
4141

4242
[Type System (C++/CX)](../cppcx/type-system-c-cx.md)<br/>
43-
[Visual C++ Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
43+
[C++/CX Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
4444
[Namespaces Reference](../cppcx/namespaces-reference-c-cx.md)

docs/cppcx/boxing-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ In a C# XAML client, you can consume it like this:
3434

3535
[Type System (C++/CX)](../cppcx/type-system-c-cx.md)<br/>
3636
[Casting (C++/CX)](../cppcx/casting-c-cx.md)<br/>
37-
[Visual C++ Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
37+
[C++/CX Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
3838
[Namespaces Reference](../cppcx/namespaces-reference-c-cx.md)

docs/cppcx/building-apps-and-libraries-c-cx.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ The topics in this section provide a few details about using the build system to
1515

1616
- [DLLs](../cppcx/dlls-c-cx.md)
1717

18-
Note: Visual C++ does not support profile guided optimizations for Universal Windows Platform. If you attempt to build a project with these options set in the IDE, a build error will result. Console applications are also not supported.
18+
>[!NOTE]
19+
>Visual Studio does not support profile guided optimizations for Universal Windows Platform. If you attempt to build a project with these options set in the IDE, a build error will result. Console applications are also not supported.

docs/cppcx/casting-c-cx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ComPtr<IInspectable> inspectable = reinterpret_cast<IInspectable*>(winRtObject);
8686
// ...
8787
```
8888

89-
If you use **reinterpret_cast** to convert from oneWindows Runtime interface to another, you cause the object to be released twice. Therefore, only use this cast when you are converting to a non-Visual C++ component extensions interface.
89+
If you use **reinterpret_cast** to convert from oneWindows Runtime interface to another, you cause the object to be released twice. Therefore, only use this cast when you are converting to a non-C++ component extensions interface.
9090

9191
## ABI types
9292

@@ -116,5 +116,5 @@ The following table summarizes the cases in which it is safe to use **reinterpre
116116
## See also
117117

118118
- [Type System](../cppcx/type-system-c-cx.md)
119-
- [Visual C++ Language Reference](../cppcx/visual-c-language-reference-c-cx.md)
119+
- [C++/CX Language Reference](../cppcx/visual-c-language-reference-c-cx.md)
120120
- [Namespaces Reference](../cppcx/namespaces-reference-c-cx.md)

docs/cppcx/clr-integration-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The following lists show value structs that support new constructors and helper
5959

6060
## Mapping the CLR to C++/CX
6161

62-
When the Visual C++ or C# compilers read a .winmd file, they automatically map certain types in the metadata file to appropriate C++/CX or CLR types. For example, in the CLR, the IVector\<T> interface is mapped to IList\<T>. But in C++/CX, the IVector\<T> interface is not mapped to another type.
62+
When the Microsoft C++ or C# compilers read a .winmd file, they automatically map certain types in the metadata file to appropriate C++/CX or CLR types. For example, in the CLR, the IVector\<T> interface is mapped to IList\<T>. But in C++/CX, the IVector\<T> interface is not mapped to another type.
6363

6464
IReference\<T> in the Windows Runtime maps to Nullable\<T> in .NET.
6565

docs/cppcx/collections-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,5 +140,5 @@ The [Windows::Foundation::Collections::VectorChangedEventHandler](/uwp/api/windo
140140
## See also
141141
142142
[Type System](../cppcx/type-system-c-cx.md)<br/>
143-
[Visual C++ Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
143+
[C++/CX Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
144144
[Namespaces Reference](../cppcx/namespaces-reference-c-cx.md)

docs/cppcx/default-namespace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ All built-in types inherit the following members.
4646

4747
## See also
4848

49-
[Visual C++ Language Reference](../cppcx/visual-c-language-reference-c-cx.md)
49+
[C++/CX Language Reference](../cppcx/visual-c-language-reference-c-cx.md)

docs/cppcx/delegates-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,5 @@ If you are familiar with event handlers in .NET, you know that the recommended p
127127
## See also
128128

129129
[Type System](../cppcx/type-system-c-cx.md)<br/>
130-
[Visual C++ Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
130+
[C++/CX Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
131131
[Namespaces Reference](../cppcx/namespaces-reference-c-cx.md)

docs/cppcx/deprecating-types-and-members-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ The following table lists the constructs to which the Deprecated attribute may b
5151
## See also
5252

5353
[Type System](../cppcx/type-system-c-cx.md)<br/>
54-
[Visual C++ Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
54+
[C++/CX Language Reference](../cppcx/visual-c-language-reference-c-cx.md)<br/>
5555
[Namespaces Reference](../cppcx/namespaces-reference-c-cx.md)

0 commit comments

Comments
 (0)