Skip to content

Commit 765f73b

Browse files
authored
link fixes in dotnet and windows folders (MicrosoftDocs#92)
* link fixes in windows * link fixes in dotnet
1 parent 859e026 commit 765f73b

File tree

45 files changed

+34
-102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+34
-102
lines changed

docs/dotnet/accumulate-stl-clr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ template<class _InIt, class _Ty, class _Fn2> inline
4747
```
4848

4949
## Remarks
50-
This function behaves the same as the STL numeric function `accumulate`. For more information, see [accumulate](../Topic/accumulate.md).
50+
This function behaves the same as the STL numeric function `accumulate`. For more information, see [accumulate](../standard-library/numeric-functions.md#accumulate).
5151

5252
## Requirements
5353
**Header:** \<cliext/numeric>

docs/dotnet/adjacent-difference-stl-clr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ template<class _InIt, class _OutIt, class _Fn2> inline
4949
```
5050

5151
## Remarks
52-
This function behaves the same as the STL numeric function `adjacent_difference`. For more information, see [adjacent_difference](../Topic/adjacent_difference.md).
52+
This function behaves the same as the STL numeric function `adjacent_difference`. For more information, see [adjacent_difference](../standard-library/numeric-functions.md#adjacent_difference).
5353

5454
## Requirements
5555
**Header:** \<cliext/numeric>

docs/dotnet/changes-in-constructor-initialization-order.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,4 @@ private:
128128
## See Also
129129
[Managed Types (C++/CL)](../dotnet/managed-types-cpp-cl.md)
130130
[Constructors](../cpp/constructors-cpp.md)
131-
[Constructor Initializers](../misc/constructor-initializers.md)
131+

docs/dotnet/friend-assemblies-cpp.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ For applicable runtimes, the *friend assemblies* language feature makes types th
6464

6565
Access to all types in an assembly must be explicitly granted. For example, assembly C does not have access to all types in assembly A if assembly C references assembly B and assembly B has access to all types in assembly A.
6666

67-
For information about how to specify the accessibility of types outside an assembly, see [Type Visibility](../misc/type-visibility.md).
68-
6967
For information about how to sign—that is, how to give a strong name to—an assembly that is built by using the Visual C++ compiler, see [Strong Name Assemblies (Assembly Signing) (C++/CLI)](../dotnet/strong-name-assemblies-assembly-signing-cpp-cli.md).
7068

7169
As an alternative to using the friend assemblies feature, you can use <xref:System.Security.Permissions.StrongNameIdentityPermission> to restrict access to individual types.

docs/dotnet/how-to-add-command-routing-to-the-windows-forms-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ translation.priority.ht:
3838

3939
The user control uses [ICommandTarget::Initialize](../mfc/reference/icommandtarget-interface.md#icommandtarget__initialize) to store a reference to the command source object in `m_CmdSrc`, as shown in the following example. To use `ICommandTarget` you must add a reference to mfcmifc80.dll.
4040

41-
`CWinFormsView` handles several of the common MFC view notifications by forwarding them to the managed user control. These notifications include the [OnInitialUpdate](../mfc/reference/iview-interface.md#iview__onititialupdate), [OnUpdate](../mfc/reference/iview-interface.md#iview__onupdate) and [OnActivateView](../mfc/reference/iview-interface.md#iview__onactivateview) methods.
41+
`CWinFormsView` handles several of the common MFC view notifications by forwarding them to the managed user control. These notifications include the [OnInitialUpdate](../mfc/reference/iview-interface.md#iview__oninitialupdate), [OnUpdate](../mfc/reference/iview-interface.md#iview__onupdate) and [OnActivateView](../mfc/reference/iview-interface.md#iview__onactivateview) methods.
4242

4343
This topic assumes you have previously completed [How to: Create the User Control and Host in a Dialog Box](../dotnet/how-to-create-the-user-control-and-host-in-a-dialog-box.md) and [How to: Create the User Control and Host MDI View](../dotnet/how-to-create-the-user-control-and-host-mdi-view.md).
4444

docs/dotnet/how-to-consume-a-csharp-indexer-cpp-cli.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ Visual C++ does not contain indexers; it has indexed properties. To consume a C#
3838

3939
For more information about indexers, see:
4040

41-
- [Indexers](/dotnet/articles/csharp/programming-guide/indexers/index)
42-
43-
- [How to: Use Indexed Properties](../misc/how-to-use-indexed-properties.md)
41+
- [Indexers](https://msdn.microsoft.com/library/6x16t2tx.aspx)
4442

4543
## Example
4644
The following C# program defines an indexer.

docs/dotnet/how-to-convert-image-file-formats-with-the-dotnet-framework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ translation.priority.ht:
3737
The following code example demonstrates the <xref:System.Drawing.Image?displayProperty=fullName> class and the <xref:System.Drawing.Imaging.ImageFormat?displayProperty=fullName> enumeration used to convert and save image files. The following code loads an image from a .jpg file and then saves it in both .gif and .bmp file formats.
3838

3939
> [!NOTE]
40-
> GDI+ is included with Windows XP, Windows Server 2003, and Windows Vista and is available as a redistributable for Windows 2000. To download the latest redistributable, see [http://go.microsoft.com/fwlink/?linkid=11232](http://go.microsoft.com/fwlink/?linkid=11232). For more information, see [GDI+](_gdiplus_GDI_start_cpp).
40+
> GDI+ is included with Windows XP, Windows Server 2003, and Windows Vista and is available as a redistributable for Windows 2000. To download the latest redistributable, see [http://go.microsoft.com/fwlink/?linkid=11232](http://go.microsoft.com/fwlink/?linkid=11232).
4141
4242
## Example
4343

docs/dotnet/how-to-create-the-user-control-and-host-mdi-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ The following steps show how to create a .NET Framework user control, author the
9797
};
9898
```
9999
100-
If you want add additional views to your MDI application, you will need to call [CWinApp::AddDocTemplate](../Topic/CWinApp::AddDocTemplate.md) for each view you create.
100+
If you want add additional views to your MDI application, you will need to call [CWinApp::AddDocTemplate](../mfc/reference/cwinapp-class.md#cwinapp__adddoctemplate) for each view you create.
101101
102102
7. Modify the MFC02View.cpp file to change CView to CWinFormsView in the IMPLEMENT_DYNCREATE macro and message map and replace the existing empty constructor with the constructor shown below:
103103

docs/dotnet/how-to-define-an-interface-static-constructor-cpp-cli.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ translation.priority.ht:
3737
# How to: Define an Interface Static Constructor (C++/CLI)
3838
An interface can have a static constructor, which can be used to initialize static data members. A static constructor will be called at most once, and will be called before the first time a static interface member is accessed.
3939

40-
For more information on static constructors, see [How to: Define Static Constructors in a Class or Struct](../misc/how-to-define-static-constructors-in-a-class-or-struct.md).
41-
4240
## Example
4341

4442
```

docs/dotnet/how-to-define-and-consume-classes-and-structs-cpp-cli.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,8 +523,6 @@ in static constructor
523523

524524
- [interior_ptr (C++/CLI)](../windows/interior-ptr-cpp-cli.md)
525525

526-
- [How to: Use Indexed Properties](../misc/how-to-use-indexed-properties.md)
527-
528526
```
529527
530528
// compile with: /clr

0 commit comments

Comments
 (0)