Skip to content

Commit 2ecd4f0

Browse files
author
Michael Blome
committed
fixed incorrect indent on mfc struct topic syntax blocks
1 parent 404b892 commit 2ecd4f0

Some content is hidden

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

44 files changed

+107
-150
lines changed

docs/mfc/reference/abc-structure.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ The **ABC** structure contains the width of a character in a TrueType font.
4141
## Syntax
4242

4343
```
44-
45-
typedef struct _ABC { /* abc */
44+
typedef struct _ABC { /* abc */
4645
int abcA;
4746
UINT abcB;
4847
int abcC;

docs/mfc/reference/abcfloat-structure.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ The `ABCFLOAT` structure contains the A, B, and C widths of a font character.
4141
## Syntax
4242

4343
```
44-
45-
typedef struct _ABCFLOAT { /* abcf */
44+
typedef struct _ABCFLOAT { /* abcf */
4645
FLOAT abcfA;
4746
FLOAT abcfB;
4847
FLOAT abcfC;

docs/mfc/reference/afx-extension-module-structure.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ The `AFX_EXTENSION_MODULE` is used during initialization of MFC extension DLLs t
4141
## Syntax
4242

4343
```
44-
45-
struct AFX_EXTENSION_MODULE
44+
struct AFX_EXTENSION_MODULE
4645
{
4746
BOOL bInitialized;
4847
HMODULE hModule;

docs/mfc/reference/afx-global-data-structure.md

Lines changed: 63 additions & 63 deletions
Large diffs are not rendered by default.

docs/mfc/reference/bitmap-structure.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ The **BITMAP** structure defines the height, width, color format, and bit values
4141
## Syntax
4242

4343
```
44-
45-
typedef struct tagBITMAP { /* bm */
44+
typedef struct tagBITMAP { /* bm */
4645
int bmType;
4746
int bmWidth;
4847
int bmHeight;

docs/mfc/reference/cdaodatabaseinfo-structure.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ The `CDaoDatabaseInfo` structure contains information about a database object de
4242
## Syntax
4343

4444
```
45-
46-
struct CDaoDatabaseInfo
45+
struct CDaoDatabaseInfo
4746
{
4847
CString m_strName; // Primary
4948
BOOL m_bUpdatable; // Primary

docs/mfc/reference/cdaoerrorinfo-structure.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ The `CDaoErrorInfo` structure contains information about an error object defined
4242
## Syntax
4343

4444
```
45-
46-
struct CDaoErrorInfo
45+
struct CDaoErrorInfo
4746
{
4847
long m_lErrorCode;
4948
CString m_strSource;

docs/mfc/reference/cdaofieldinfo-structure.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ The `CDaoFieldInfo` structure contains information about a field object defined
4242
## Syntax
4343

4444
```
45-
46-
struct CDaoFieldInfo
45+
struct CDaoFieldInfo
4746
{
4847
CString m_strName; // Primary
4948
short m_nType; // Primary

docs/mfc/reference/cdaoindexfieldinfo-structure.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ The `CDaoIndexFieldInfo` structure contains information about an index field obj
4242
## Syntax
4343

4444
```
45-
46-
struct CDaoIndexFieldInfo
45+
struct CDaoIndexFieldInfo
4746
{
4847
CString m_strName; // Primary
4948
BOOL m_bDescending; // Primary

docs/mfc/reference/cdaoindexinfo-structure.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ The `CDaoIndexInfo` structure contains information about an index object defined
4242
## Syntax
4343

4444
```
45-
46-
struct CDaoIndexInfo {
45+
struct CDaoIndexInfo {
4746
CDaoIndexInfo();
4847
*// Constructor
4948
CString m_strName; // Primary

0 commit comments

Comments
 (0)