Skip to content

Commit 4e393ab

Browse files
author
Michael Blome
committed
broken link fixes in atl
1 parent 076f1fa commit 4e393ab

File tree

58 files changed

+80
-80
lines changed

Some content is hidden

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

58 files changed

+80
-80
lines changed

docs/atl/reference/aggregation-and-class-factory-macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ DECLARE_POLY_AGGREGATABLE( x )
315315
The `DECLARE_POLY_AGGREGATABLE` macro is automatically declared in your object if you use the ATL Control Wizard to create a full control.
316316

317317
## <a name="declare_protect_final_construct"></a> DECLARE_PROTECT_FINAL_CONSTRUCT
318-
Protects your object from being deleted if (during [FinalConstruct](../Topic/CComObjectRootEx::FinalConstruct.md)) the internal aggregated object increments the reference count then decrements the count to 0.
318+
Protects your object from being deleted if (during [FinalConstruct](ccomobjectrootex-class.md#finalconstruct)) the internal aggregated object increments the reference count then decrements the count to 0.
319319

320320
```
321321
DECLARE_PROTECT_FINAL_CONSTRUCT()

docs/atl/reference/atl-base-module70-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ struct _ATL_BASE_MODULE70 {
8181
Array used to search for resources in all the resource instances of which ATL is aware. Used internally by ATL.
8282

8383
## Remarks
84-
[_ATL_BASE_MODULE](../Topic/_ATL_BASE_MODULE.md) is defined as a typedef of `_ATL_BASE_MODULE70`.
84+
[_ATL_BASE_MODULE](atl-typedefs.md#-atl_base_module) is defined as a typedef of `_ATL_BASE_MODULE70`.
8585

8686
## Requirements
8787
**Header:** atlcore.h

docs/atl/reference/atl-com-module70-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ struct _ATL_COM_MODULE70 {
6969
Critical section to serialize access to the object map entries. Used internally by ATL.
7070

7171
## Remarks
72-
[_ATL_COM_MODULE](../Topic/_ATL_COM_MODULE.md) is defined as a typedef of `_ATL_COM_MODULE70`.
72+
[_ATL_COM_MODULE](atl-typedefs.md#_atl_com_module) is defined as a typedef of `_ATL_COM_MODULE70`.
7373

7474
## Requirements
7575
**Header:** atlbase.h

docs/atl/reference/atl-drawinfo-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ struct ATL_DRAWINFO {
100100
The actual width and height of the target.
101101

102102
## Remarks
103-
Typical usage of this structure would be the retrieval of information during the rendering of the target object. For example, you could retrieve values from `ATL_DRAWINFO` inside your overload of [CComControlBase::OnDrawAdvanced](../Topic/CComControlBase::OnDrawAdvanced.md).
103+
Typical usage of this structure would be the retrieval of information during the rendering of the target object. For example, you could retrieve values from `ATL_DRAWINFO` inside your overload of [CComControlBase::OnDrawAdvanced](ccomcontrolbase-class.md#ondrawadvanced).
104104

105105
This structure stores pertinent information used to render the appearance of an object for the target device. The information provided can be used in drawing to the screen, a printer, or even a metafile.
106106

docs/atl/reference/atl-http-utility-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ inline ATL_URL_PORT AtlGetDefaultUrlPort(ATL_URL_SCHEME m_nScheme) throw();
161161
The [ATL_URL_SCHEME](http://msdn.microsoft.com/Library/f4131046-8ba0-4ec1-8209-84203f05d20e) value identifying the scheme for which you want to obtain the port number.
162162

163163
### Return Value
164-
The [ATL_URL_PORT](../Topic/ATL_URL_PORT.md) associated with the specified scheme or ATL_URL_INVALID_PORT_NUMBER if the scheme is not recognized.
164+
The [ATL_URL_PORT](atl-typedefs.md#atl_url_port) associated with the specified scheme or ATL_URL_INVALID_PORT_NUMBER if the scheme is not recognized.
165165

166166
### Requirements
167167
**Header:** atlutil.h

docs/atl/reference/atl-module70-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ struct _ATL_MODULE70 {
6565
Used to coordinate access to internal data in multithreaded situations.
6666

6767
## Remarks
68-
[_ATL_MODULE](../Topic/_ATL_MODULE.md) is defined as a typedef of `_ATL_MODULE70`.
68+
[_ATL_MODULE](atl-typedefs.md#_atl_module) is defined as a typedef of `_ATL_MODULE70`.
6969

7070
## Requirements
7171
**Header:** atlbase.h

docs/atl/reference/atl-typedefs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The Active Template Library includes the following typedefs.
4343
|[_ATL_COM_MODULE](#_atl_com_module)|Defined as a typedef based on [_ATL_COM_MODULE70](../../atl/reference/atl-com-module70-structure.md).|
4444
|[_ATL_MODULE](#_atl_module)|Defined as a typedef based on [_ATL_MODULE70](../../atl/reference/atl-module70-structure.md).|
4545
|[_ATL_WIN_MODULE](#_atl_win_module)|Defined as a typedef based on [_ATL_WIN_MODULE70](../../atl/reference/atl-win-module70-structure.md)|
46-
|[ATL_URL_PORT](../Topic/ATL_URL_PORT.md)|The type used by [CUrl](../../atl/reference/curl-class.md) for specifying a port number.|
46+
|[ATL_URL_PORT](atl-typedefs.md#atl_url_port)|The type used by [CUrl](../../atl/reference/curl-class.md) for specifying a port number.|
4747
|[CComDispatchDriver](#ccomdispatchdriver)|This class manages COM interface pointers.|
4848
|[CComGlobalsThreadModel](#ccomglobalsthreadmodel)|Calls the appropriate thread model methods, regardless of the threading model being used.|
4949
|[CComObjectThreadModel](#ccomobjectthreadmodel)|Calls the appropriate thread model methods, regardless of the threading model being used.|

docs/atl/reference/atl-win-module70-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ struct _ATL_WIN_MODULE70 {
6565
Used to track window class registrations so that they can be properly unregistered at termination. Used internally by ATL.
6666

6767
## Remarks
68-
[_ATL_WIN_MODULE](../Topic/_ATL_WIN_MODULE.md) is defined as a typedef of `_ATL_WIN_MODULE70`.
68+
[_ATL_WIN_MODULE](atl-typedefs.md#_atl_win_module) is defined as a typedef of `_ATL_WIN_MODULE70`.
6969

7070
## Requirements
7171
**Header:** atlbase.h

docs/atl/reference/catlarray-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ template<typename E, class ETraits = CElementTraits<E>> class CAtlArray
8181

8282
|||
8383
|-|-|
84-
|[operator &#91;&#93;](../Topic/CAtlArray::operator.md)|Call this operator to return a reference to an element in the array.|
84+
|[operator &#91;&#93;](#operator__at)|Call this operator to return a reference to an element in the array.|
8585

8686
### Typedefs
8787

docs/atl/reference/catlbasemodule-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class CAtlBaseModule :
7777
This class replaces the obsolete [CComModule](../../atl/reference/ccommodule-class.md) class used in earlier versions of ATL.
7878

7979
## Inheritance Hierarchy
80-
[_ATL_BASE_MODULE](../Topic/_ATL_BASE_MODULE.md)
80+
[_ATL_BASE_MODULE](atl-typedefs.md#-atl_base_module)
8181

8282
`CAtlBaseModule`
8383

0 commit comments

Comments
 (0)