Skip to content

Commit a2ab1bc

Browse files
author
3836425+corob-msft@users.noreply.github.com
committed
Remove HTML entities for plus
1 parent 2e575dc commit a2ab1bc

9 files changed

+36
-36
lines changed

docs/cppcx/collections-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In a C++/CX program, you can make free use of Standard Template Library (STL) co
1010

1111
The Windows Runtime defines the interfaces for collections and related types, and C++/CX provides the concrete C++ implementations in the collection.h header file. This illustration shows the relationships between the collection types:
1212

13-
![C++/CX inheritance tree for collection types.](../cppcx/media/cppcxcollectionsinheritancetree.png "C++/CX inheritance tree for collection types")
13+
![Diagram of C plus plus C X inheritance tree for collection types.](../cppcx/media/cppcxcollectionsinheritancetree.png)
1414

1515
- The [Platform::Collections::Vector class](../cppcx/platform-collections-vector-class.md) resembles the [std::vector class](../standard-library/vector-class.md).
1616

docs/cppcx/obtaining-pointers-to-data-buffers-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In the Windows Runtime the [Windows::Storage::Streams::IBuffer](/uwp/api/windows
1010

1111
The following diagram shows a XAML image element, whose source is a [Windows::UI::Xaml::Media::Imaging WriteableBitmap](/uwp/api/windows.ui.xaml.media.imaging.writeablebitmap). A client app that's written in any language can pass a reference to the `WriteableBitmap` to C++ code and then C++ can use the reference to get at the underlying buffer. In a Universal Windows Platform app that's written in C++, you can use the function in the following example directly in the source code without packaging it in a Windows Runtime component.
1212

13-
![Diagram showing a code component that accesses pixel data directly.](../cppcx/media/ibufferbyteaccessdiagram.png "C++ code that accesses pixel data directly")
13+
![Diagram showing a code component that accesses pixel data directly.](../cppcx/media/ibufferbyteaccessdiagram.png)
1414

1515
## GetPointerToPixelData
1616

docs/ide/cpp-linter-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ monikerRange: ">=msvc-160"
1616

1717
The IntelliSense code linter for C++ helps developers find and fix common C++ problems right inside Visual Studio. It's based on the same engine that provides C++ IntelliSense, so problems are flagged as soon as you type them.
1818

19-
![Animation showing the C++ linter in action.](../ide/media/linter-demo-animation.gif)
19+
![Animation showing the C plus plus linter in action.](../ide/media/linter-demo-animation.gif)
2020

2121
## Find problems
2222

@@ -38,7 +38,7 @@ When you change the check severity level, it changes how the problem is shown in
3838

3939
::: moniker range=">=msvc-170"
4040

41-
![Screenshot that shows the C++ linter configuration.](../ide/media/linter-settings.png)
41+
![Screenshot that shows the C plus plus linter configuration.](../ide/media/linter-settings.png)
4242

4343
(The presentation in Visual Studio 2019 is slightly different, but the options are similar.)
4444

docs/ide/live-share-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.date: "05/24/2019"
77

88
In Visual Studio 2019 and Visual Studio Code, you can use **Live Share** to collaborate on C++ projects in real-time. With **Live Share** another person can edit and debug your code without having to install your project or any of its dependencies. You see each other's edits as they occur, and each edit is tagged with the name of the person who made it.
99

10-
![Screenshot of C++ Live Share Editing.](../ide/media/live-share-edit-cpp.png "Live Share Editing in C++")
10+
![Screenshot of C plus plus Live Share Editing.](../ide/media/live-share-edit-cpp.png)
1111

1212
## Live Share host and guests
1313

@@ -27,7 +27,7 @@ The host and guests can use these IntelliSense features:
2727
- Reference Highlighting
2828
- Diagnostics/Errors/Squiggles
2929

30-
![Screenshot of C++ Live Share Debugging.](../ide/media/live-share-debug-cpp.png "Live Share Debugging in C++")
30+
![Screenshot of C plus plus Live Share Debugging.](../ide/media/live-share-debug-cpp.png)
3131

3232
## Start and end a Live Share session
3333

docs/ide/navigate-code-cpp.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Visual Studio provides a suite of tools that you can use to navigate around your
1111

1212
Right-click an `#include` directive, and select **Go To Document**. Or, select **F12** with the cursor over that line to open the file.
1313

14-
![Screenshot of the C++ Go To Document menu option.](../ide/media/go-to-document.png "Go To Document")
14+
![Screenshot of the C plus plus Go To Document menu option.](../ide/media/go-to-document.png)
1515

1616
## Toggle Header/Code File
1717

@@ -21,15 +21,15 @@ You can switch between a header file and its corresponding source file. Right-cl
2121

2222
You can navigate to the definition of a code symbol by right-clicking it in the editor and selecting **Go To Definition**, or by selecting **F12**. You can navigate to a declaration similarly by right-clicking to open the context menu, or by selecting **Ctrl+F12**.
2323

24-
![Screenshot of C++ Go To Definition.](../ide/media/go-to-def.png "Go To Definition")
24+
![Screenshot of C plus plus Go To Definition.](../ide/media/go-to-def.png)
2525

2626
## Go To
2727

2828
**Go To** refers to a set of navigation features that each provide a specific kind of result based on filters you specify.
2929

3030
You can open **Go To** with **Ctrl+,**. This action creates a search box over the document you're editing.
3131

32-
![Screenshot of C++ Go To.](../ide/media/go-to-cpp.png "Go To")
32+
![Screenshot of C plus plus Go To.](../ide/media/go-to-cpp.png)
3333

3434
**Go To** includes these search filters:
3535

@@ -74,7 +74,7 @@ You can run a text search for anything in your solution with **Find** (**Ctrl+F*
7474

7575
**Find** can be scoped to a selection, the current document, all open documents, the current project, or the entire solution. You can use regular expressions and plain text. It also highlights all matches automatically in the IDE.
7676

77-
![Screenshot of C++ Find.](../ide/media/find-cpp.png "Find")
77+
![Screenshot of C plus plus Find.](../ide/media/find-cpp.png)
7878

7979
**Find in Files** is a more powerful version of **Find** that displays results in the **Find Results** window. You can search external code dependencies, filter by file types, and more.
8080

@@ -90,7 +90,7 @@ For more information, see [Find in Files](/visualstudio/ide/find-in-files) in th
9090

9191
To find all usages of a symbol in your codebase, place the caret in or just after the symbol, right-click, and then select **Find All References**. You can filter, sort, or group results in many different ways. Results populate incrementally. They're classified as Reads or Writes to help you see what's in your solution as opposed to system headers or other libraries.
9292

93-
![Screenshot of C++ Find all references.](../ide/media/find-all-references-results-cpp.png "Find all references")
93+
![Screenshot of C plus plus Find all references.](../ide/media/find-all-references-results-cpp.png)
9494

9595
You group results by the following categories:
9696

@@ -104,7 +104,7 @@ You group results by the following categories:
104104

105105
To filter results, hover over a column and select the filtering icon that pops up. You can filter results from the first column to hide things like string and comment references that you might not want to see.
106106

107-
![Screenshot of C++ Find all references filters.](../ide/media/find-all-references-filters-cpp.png "Find all references filters")
107+
![Screenshot of C plus plus Find all references filters.](../ide/media/find-all-references-filters-cpp.png)
108108

109109
- **Confirmed results**: Actual code references to the symbol being searched for. For example, searching for a member function called `Size` returns all references to `Size` that match the scope of the class that defines `Size`.
110110

@@ -120,7 +120,7 @@ You can sort results by any column by selecting that column. You can swap betwee
120120

121121
You can navigate to the definition of a type in a file, or to type members, by using the **Navigation Bar** that's above the editor window.
122122

123-
![Screenshot of the C++ Navigation Bar.](../ide/media/navbar-cpp.png "Navigation Bar")
123+
![Screenshot of the C plus plus Navigation Bar.](../ide/media/navbar-cpp.png)
124124

125125
## See also
126126

docs/ide/read-and-understand-code-cpp.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can customize the colors by typing "Fonts" in **Quick Launch**, and then cho
2323

2424
Right-click anywhere in a source code file and choose **Outlining** to collapse or expand code blocks and/or custom regions to make it easier to browse only the code you are interested in. For more information, see [Outlining](/visualstudio/ide/outlining).
2525

26-
![Screenshot of C++ Outlining.](../ide/media/vs2015_cpp_outlining.png "Outlining")
26+
![Screenshot of C plus plus Outlining.](../ide/media/vs2015_cpp_outlining.png)
2727

2828
When you place your cursor in front of a curly brace, '{' or '}', the editor highlights its matching counterpart.
2929

@@ -37,11 +37,11 @@ You can add line numbers to your project by going to **Tools** > **Options** > *
3737

3838
You can zoom in or out in the editor by pressing the **Ctrl** key and scrolling with your mouse wheel. You can also zoom by using the zoom setting in the bottom left corner.
3939

40-
![Screenshot of the C++ Zoom Control.](../ide/media/zoom-control.png "Zoom control")
40+
![Screenshot of the C plus plus Zoom Control.](../ide/media/zoom-control.png)
4141

4242
Scrollbar **Map Mode** enables you to quickly scroll and browse through a code file without leaving your current location. You can click anywhere on the code map to go directly to that location.
4343

44-
![Screenshot of the Code Map in C++.](../ide/media/vs2015-cpp-code-map.png "Code Map")
44+
![Screenshot of the Code Map in C plus plus.](../ide/media/vs2015-cpp-code-map.png)
4545

4646
To turn on **Map Mode**, type "map" in the **Quick Launch** search box in the main toolbar and choose **Use scroll map mode**. For more information, see [How to: Track your code by customizing the scrollbar](/visualstudio/ide/how-to-track-your-code-by-customizing-the-scrollbar).
4747

@@ -75,13 +75,13 @@ If there is an error in your code, you can hover over it and **Quick Info** will
7575

7676
When you call a function, **Parameter Info** shows the types of parameters and the order in which they are expected.
7777

78-
![Screenshot of Parameter Info in C++.](../ide/media/parameter-info.png "Parameter Info")
78+
![Screenshot of Parameter Info in C plus plus.](../ide/media/parameter-info.png)
7979

8080
## Peek Definition
8181

8282
Hover over a variable or function declaration, right-click, then choose **Peek Definition** to see an inline view of its definition without navigating away from your current location. For more information, see [Peek Definition (Alt+F12)](/visualstudio/ide/how-to-view-and-edit-code-by-using-peek-definition-alt-plus-f12).
8383

84-
![Screenshot of C++ Peek Definition.](../ide/media/vs2015_cpp_peek_definition.png "vs2015_cpp_peek_definition")
84+
![Screenshot of C plus plus Peek Definition.](../ide/media/vs2015_cpp_peek_definition.png)
8585

8686
## F1 Help
8787

@@ -91,19 +91,19 @@ Place the cursor on or just after any type, keyword or function and press **F1**
9191

9292
**Class View** displays a searchable set of trees of all code symbols and their scope and parent/child hierarchies, organized on a per-project basis. You can configure what **Class View** displays from **Class View Settings** (click the gear box icon at the top of the window).
9393

94-
![Screenshot of Class View in C++.](../ide/media/class-view.png "Class View")
94+
![Screenshot of Class View in C plus plus.](../ide/media/class-view.png)
9595

9696
## Generate graph of include files
9797

9898
Right click on a code file in your project and choose **Generate graph of include files** to see a graph of which files are included by other files.
9999

100-
![Screenshot of C++ graph of include files.](../ide/media/vs2015_cpp_include_graph.png "vs2015_cpp_include_graph")
100+
![Screenshot of C plus plus graph of include files.](../ide/media/vs2015_cpp_include_graph.png)
101101

102102
## View Call Hierarchy
103103

104104
Right click on any function call and view a recursive list of all the functions that it calls, and all the functions that call it. Each function in the list can be expanded in the same way. For more information, see [Call Hierarchy](/visualstudio/ide/reference/call-hierarchy).
105105

106-
![Screenshot of C++ Call Hierarchy.](../ide/media/vs2015_cpp_call_hierarchy.png "vs2015_cpp_call_hierarchy")
106+
![Screenshot of C plus plus Call Hierarchy.](../ide/media/vs2015_cpp_call_hierarchy.png)
107107

108108
## See Also
109109

docs/ide/writing-and-refactoring-code-cpp.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Visual Studio provides several tools to help you write, edit, and refactor your
1414

1515
IntelliSense is a powerful code completion tool that suggests symbols and code snippets for you as you type. C++ IntelliSense in Visual Studio runs in real time, analyzing your codebase as you update it and providing recommendations. As you type more characters, the list of recommended results narrows down.
1616

17-
![Screenshot of the C++ member list drop down.](../ide/media/cpp-statement-completion.png)
17+
![Screenshot of the C plus plus member list drop down.](../ide/media/cpp-statement-completion.png)
1818

1919
Some symbols are omitted automatically to help narrow down the results. For example, when accessing a class object's members from outside the class, you will not be able to see private members by default, or protected members (if you are not in the context of a child class). You can adjust the filtering by using the buttons at the bottom.
2020

@@ -31,7 +31,7 @@ IntelliCode is AI-assisted IntelliSense. It puts the most likely candidate at th
3131

3232
When writing C++, IntelliCode will assist when using popular libraries such as the C++ Standard Library. The context of your code is used to provide the most useful recommendations first. In the following example, the `size` member function is commonly used with the `sort` function, so it is surfaced to the top of the results list.
3333

34-
![Screenshot of C++ IntelliCode.](../ide/media/intellicode-cpp.png "C++ IntelliCode")
34+
![Screenshot of C plus plus IntelliCode.](../ide/media/intellicode-cpp.png)
3535

3636
::: moniker range=">=msvc-160"
3737

@@ -51,7 +51,7 @@ In Visual Studio 2017, IntelliCode is available as an extension in the Visual St
5151

5252
To override **Predictive IntelliSense** and show the longer list, press **Ctrl + J**. If **Predictive IntelliSense** is on, invoking **Ctrl + J** removes the Predictive filter. Pressing **Ctrl + J** again removes the accessibility filter from Member List results where relevant. The ([+]) button under the IntelliSense dropdown list does the same thing as **Ctrl + J**. Hover over the button to see tooltip information about what is being shown.
5353

54-
![Screenshot of C++ Predictive IntelliSense.](../ide/media/predictive-intellisense-cpp.png "Predictive IntelliSense")
54+
![Screenshot of C plus plus Predictive IntelliSense.](../ide/media/predictive-intellisense-cpp.png)
5555

5656
The preceding screenshot shows several buttons under the dropdown list. These enable IntelliSense Filters for different kinds of results:
5757

@@ -68,21 +68,21 @@ A button is displayed only if it is relevant to your current IntelliSense sessio
6868

6969
When the caret is inside a template definition, a **Template Bar** appears, which enables you to provide sample template arguments for IntelliSense.
7070

71-
![Screenshot of C++ Template IntelliSense Show Existing Instantiations.](../ide/media/template-intellisense-cpp-1.png "Template IntelliSense Show Existing Instantiations")
71+
![Screenshot of C plus plus Template IntelliSense Show Existing Instantiations.](../ide/media/template-intellisense-cpp-1.png)
7272

7373
Click the **\<T>** icon to expand/collapse the **Template Bar**. Click the pencil icon or double-click the **Template Bar** to open the **Edit** window.
7474

75-
![Screenshot of C&#43;&#43; Template IntelliSense.](../ide/media/template-intellisense-cpp-3.png "Template IntelliSense")
75+
![Screenshot of C plus plus Template IntelliSense.](../ide/media/template-intellisense-cpp-3.png)
7676

7777
Edits that you make in the window are applied directly to the source code, so that you can see the effects in real time.
7878

7979
The Template Bar can auto-populate candidates based on instantiations in your code. Click on **Add All Existing Instantiations** to see a list of all concrete arguments that have been used to instantiate the template throughout your code base.
8080

81-
![Screenshot of C&#43;&#43; Template IntelliSense Results List.](../ide/media/template-intellisense-cpp-2.png "Template IntelliSense Results List")
81+
![Screenshot of C plus plus Template IntelliSense Results List.](../ide/media/template-intellisense-cpp-2.png)
8282

8383
A window at the bottom of the editor shows where each instantiation was found, and what its arguments were.
8484

85-
![Screenshot of C&#43;&#43; Template IntelliSense Instantiation Map.](../ide/media/template-intellisense-cpp-4.png "Template IntelliSense Instantiation Map")
85+
![Screenshot of C plus plus Template IntelliSense Instantiation Map.](../ide/media/template-intellisense-cpp-4.png)
8686

8787
**Template Bar** information is treated as user-specific. It is stored in the .vs folder and is not committed to source control.
8888

@@ -104,7 +104,7 @@ The editor also offers Quick Fixes for some refactoring opportunities. For examp
104104

105105
Whenever you make a change to a file, a yellow bar appears on the left to indicate that unsaved changes were made. When you save the file, the bar turns green. The green and yellow bars are preserved as long as the document is open in the editor. They represent the changes that were made since you last opened the document.
106106

107-
![Screenshot of C&#43;&#43; change tracking.](../ide/media/change-tracking-cpp.png "Change tracking")
107+
![Screenshot of C plus plus change tracking.](../ide/media/change-tracking-cpp.png)
108108

109109
## Move code
110110

@@ -114,17 +114,17 @@ You can move lines of code up and down by selecting them, holding down Alt, and
114114

115115
A snippet is a predefined piece of source code. Right-click on a single point or on selected text to either insert a snippet or surround the selected text with the snippet. The following illustration shows the three steps to surround a selected statement with a for loop. The yellow highlights in the final image are editable fields that you access with the tab key. For more information, see [Code Snippets](/visualstudio/ide/code-snippets).
116116

117-
![Screenshot of C&#43;&#43; Insert Snippet Drop&#45;down.](../ide/media/vs2015_cpp_surround_with.png "vs2015_cpp_surround_with")
117+
![Screenshot of C plus plus Insert Snippet Drop&#45;down.](../ide/media/vs2015_cpp_surround_with.png)
118118

119119
## Add Class
120120

121121
Add a new class from the **Project** menu, or from the context menu in **Solution Explorer**:
122122

123-
![Add New Class in C&#43;&#43;.](../ide/media/vs2017-add-class.png "vs2015_cpp_add_class")
123+
![Add New Class in C plus plus.](../ide/media/vs2017-add-class.png)
124124

125125
You can also use Class Wizard to modify or examine an existing class.
126126

127-
![C&#43;&#43; Class Wizard.](../ide/media/vs2017-class-wizard.png)
127+
![C plus plus Class Wizard.](../ide/media/vs2017-class-wizard.png)
128128

129129
For more information, see [Adding Functionality with Code Wizards (C++)](../ide/adding-functionality-with-code-wizards-cpp.md).
130130

@@ -155,7 +155,7 @@ You can also provide your own .clang-format or _clang-format file to apply custo
155155

156156
The files are easily shareable via source control, so you can enforce coding conventions across your whole development team.
157157

158-
![Screenshot showing C&#43;&#43; Clang Format.](../ide/media/clang-format-cpp.png "Clang Format")
158+
![Screenshot showing C plus plus Clang Format.](../ide/media/clang-format-cpp.png)
159159

160160
Visual Studio 2017 and later also supports [EditorConfig](https://editorconfig.org/), which works in a similar way. ClangFormat, however, has more style options than EditorConfig, including rules that are specific to C++. With **EditorConfig**, you create **.editorconfig** files and place them in different folders of your codebase to specify code styles for those folders and their subfolders. An **.editorconfig** file supersedes any other **.editorconfig** files in parent folders and overwrites any formatting settings configured via **Tools** > **Options**. You can set rules for tabs vs. spaces, indent size, and more. For more information, see [Create portable, custom editor settings with EditorConfig](/visualstudio/ide/create-portable-custom-editor-options).
161161

docs/mfc/reference/coleipframewndex-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ virtual BOOL OnCloseDockingPane(CDockablePane*);
481481
482482
### Parameters
483483
484-
[in] *CDockablePane&#42;*<br/>
484+
[in] *`CDockablePane*`*<br/>
485485
486486
### Return Value
487487
@@ -495,7 +495,7 @@ virtual BOOL OnCloseMiniFrame(CPaneFrameWnd*);
495495
496496
### Parameters
497497
498-
[in] *CPaneFrameWnd&#42;*<br/>
498+
[in] *`CPaneFrameWnd*`*<br/>
499499
500500
### Return Value
501501

0 commit comments

Comments
 (0)