Skip to content

Commit b781d61

Browse files
author
Colin Robertson
committed
Additional issues from 3155
1 parent 977776b commit b781d61

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

docs/cpp/auto-cpp.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ int main()
211211
212212
## See also
213213
214-
[`auto` Keyword](../cpp/auto-keyword.md)<br/>
215214
[Keywords](../cpp/keywords-cpp.md)<br/>
216215
[`/Zc:auto` (Deduce Variable Type)](../build/reference/zc-auto-deduce-variable-type.md)<br/>
217216
[`sizeof` Operator](../cpp/sizeof-operator.md)<br/>

docs/cpp/program-termination.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ no-loc: [exit, abort, return, main, atexit, void]
1010

1111
In C++, you can exit a program in these ways:
1212

13-
- Call the [exit](exit-function.md) function.
14-
- Call the [abort](abort-function.md) function.
13+
- Call the [exit](../c-runtime-library/reference/exit-exit-exit.md) function.
14+
- Call the [abort](../c-runtime-library/reference/abort.md) function.
1515
- Execute a [return](return-statement-cpp.md) statement from `main`.
1616

1717
## exit function

docs/windows/accelerator-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ The procedures below refer to the use of standard property pages, however, both
149149
1. Go to the [Properties window](/visualstudio/ide/reference/properties-window) and type in the values you want all of the selected accelerators to share.
150150

151151
> [!NOTE]
152-
> Each modifier value appears as a Boolean property in the **Properties** window. If you change a [Modifier](../windows/accelerator-modifier-property.md) value in the **Properties** window, the accelerator table treats the new modifier as an addition to any modifiers that were previously there. Because of this, if you set any modifier values, you'll need to set all of them to ensure that every accelerator shares the same **Modifier** settings.
152+
> Each modifier value appears as a Boolean property in the **Properties** window. If you change a modifier value in the **Properties** window, the accelerator table treats the new modifier as an addition to any modifiers that were previously there. Because of this, if you set any modifier values, you'll need to set all of them to ensure that every accelerator shares the same **Modifier** settings.
153153
154154
## Requirements
155155

docs/windows/toolbar-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ A toolbar button has the following properties:
4141
|**ID**|Defines the ID for the button. The drop-down list provides common **ID** names.|
4242
|**Width**|Sets the width of the button. 16 pixels is recommended.|
4343
|**Height**|Sets the height of the button. The height of one button changes the height of all buttons on the toolbar. 15 pixels is recommended.|
44-
|**Prompt**|Defines the message displayed in the status bar. Adding *\n* and a name adds a **ToolTip** to that toolbar button. For more information, see [Creating a ToolTip](../windows/creating-a-tool-tip-for-a-toolbar-button.md).|
44+
|**Prompt**|Defines the message displayed in the status bar. Adding *\n* and a name adds a **ToolTip** to that toolbar button. For more information, see [To create a tool tip for a toolbar button](#to-create-a-tool-tip-for-a-toolbar-button).|
4545

4646
**Width** and **Height** apply to all buttons. A bitmap that is used to create a toolbar has a maximum width of 2048, so if you set the button width to *512*, you can only have four buttons and if you set the width to *513*, you can only have three buttons.
4747

0 commit comments

Comments
 (0)