Skip to content

Commit fc8c95a

Browse files
authored
Merge pull request #5555 from Rageking8/wrap-multiple-function-prototypes-in-a-line
Wrap multiple function prototypes in a line
2 parents 0b2dbfb + 96d5bba commit fc8c95a

File tree

9 files changed

+48
-32
lines changed

9 files changed

+48
-32
lines changed

docs/cppcx/platform-intptr-value-class.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Platform::IntPtr value class"
33
description: "Learn more about: Platform::IntPtr value class"
4-
ms.date: "12/30/2016"
4+
ms.date: 12/30/2016
55
ms.topic: "reference"
66
f1_keywords: ["VCCORLIB/PlatformIntPtr::IntPtr", "VCCORLIB/PlatformIntPtr::op_explicit Operator", "VCCORLIB/PlatformIntPtr::ToInt32"]
77
helpviewer_keywords: ["Platform::IntPtr Struct"]
@@ -43,7 +43,9 @@ Initializes a new instance of an IntPtr with the specified value.
4343
### Syntax
4444
4545
```cpp
46-
IntPtr( __int64 handle-or-pointer ); IntPtr( void* value ); IntPtr( int 32-bit_value );
46+
IntPtr( __int64 handle-or-pointer );
47+
IntPtr( void* value );
48+
IntPtr( int 32-bit_value );
4749
```
4850

4951
### Parameters
@@ -58,7 +60,9 @@ Converts the specified parameter to an IntPtr or a pointer to an IntPtr value.
5860
### Syntax
5961

6062
```cpp
61-
static IntPtr::operator IntPtr( void* value1); static IntPtr::operator IntPtr( int value2); static IntPtr::operator void*( IntPtr value3 );
63+
static IntPtr::operator IntPtr( void* value1);
64+
static IntPtr::operator IntPtr( int value2);
65+
static IntPtr::operator void*( IntPtr value3 );
6266
```
6367
6468
### Parameters

docs/cppcx/platform-sizet-value-class.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
---
2-
description: "Learn more about: Platform::SizeT value class"
32
title: "Platform::SizeT value class"
4-
ms.date: "12/30/2016"
3+
description: "Learn more about: Platform::SizeT value class"
4+
ms.date: 12/30/2016
55
ms.topic: "reference"
66
f1_keywords: ["VCCORLIB/PlatformSizeT::SizeT constructor"]
77
helpviewer_keywords: ["Platform::SizeT Struct"]
8-
ms.assetid: 0803612c-8ba1-430c-9b7b-1bebae88608d
98
---
109
# Platform::SizeT value class
1110

@@ -40,7 +39,8 @@ Initializes a new instance of SizeT with the specified value.
4039
### Syntax
4140
4241
```cpp
43-
SizeT( uint32 value1 ); SizeT( void* value2 );
42+
SizeT( uint32 value1 );
43+
SizeT( void* value2 );
4444
```
4545

4646
### Parameters

docs/mfc/reference/cmonthcalctrl-class.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,8 @@ The next code example reports which view the month calendar control currently di
304304
Retrieves the system time as indicated by the currently-selected date.
305305

306306
```
307-
BOOL GetCurSel(COleDateTime& refDateTime) const; BOOL GetCurSel(CTime& refDateTime) const;
307+
BOOL GetCurSel(COleDateTime& refDateTime) const;
308+
BOOL GetCurSel(CTime& refDateTime) const;
308309
309310
BOOL GetCurSel(LPSYSTEMTIME pDateTime) const;
310311
```
@@ -595,7 +596,8 @@ In MFC's implementation of `GetSelRange`, you can specify `COleDateTime` usage,
595596
Retrieves the date information for the date specified as "today" for a month calendar control.
596597

597598
```
598-
BOOL GetToday(COleDateTime& refDateTime) const; BOOL GetToday(COleDateTime& refDateTime) const;
599+
BOOL GetToday(COleDateTime& refDateTime) const;
600+
BOOL GetToday(COleDateTime& refDateTime) const;
599601
600602
BOOL GetToday(LPSYSTEMTIME pDateTime) const;
601603
```

docs/mfc/reference/colesafearray-class.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: COleSafeArray Class"
32
title: "COleSafeArray Class"
4-
ms.date: "08/29/2019"
3+
description: "Learn more about: COleSafeArray Class"
4+
ms.date: 08/29/2019
55
f1_keywords: ["COleSafeArray", "AFXDISP/COleSafeArray", "AFXDISP/COleSafeArray::COleSafeArray", "AFXDISP/COleSafeArray::AccessData", "AFXDISP/COleSafeArray::AllocData", "AFXDISP/COleSafeArray::AllocDescriptor", "AFXDISP/COleSafeArray::Attach", "AFXDISP/COleSafeArray::Clear", "AFXDISP/COleSafeArray::Copy", "AFXDISP/COleSafeArray::Create", "AFXDISP/COleSafeArray::CreateOneDim", "AFXDISP/COleSafeArray::Destroy", "AFXDISP/COleSafeArray::DestroyData", "AFXDISP/COleSafeArray::DestroyDescriptor", "AFXDISP/COleSafeArray::Detach", "AFXDISP/COleSafeArray::GetByteArray", "AFXDISP/COleSafeArray::GetDim", "AFXDISP/COleSafeArray::GetElement", "AFXDISP/COleSafeArray::GetElemSize", "AFXDISP/COleSafeArray::GetLBound", "AFXDISP/COleSafeArray::GetOneDimSize", "AFXDISP/COleSafeArray::GetUBound", "AFXDISP/COleSafeArray::Lock", "AFXDISP/COleSafeArray::PtrOfIndex", "AFXDISP/COleSafeArray::PutElement", "AFXDISP/COleSafeArray::Redim", "AFXDISP/COleSafeArray::ResizeOneDim", "AFXDISP/COleSafeArray::UnaccessData", "AFXDISP/COleSafeArray::Unlock"]
66
helpviewer_keywords: ["COleSafeArray [MFC], COleSafeArray", "COleSafeArray [MFC], AccessData", "COleSafeArray [MFC], AllocData", "COleSafeArray [MFC], AllocDescriptor", "COleSafeArray [MFC], Attach", "COleSafeArray [MFC], Clear", "COleSafeArray [MFC], Copy", "COleSafeArray [MFC], Create", "COleSafeArray [MFC], CreateOneDim", "COleSafeArray [MFC], Destroy", "COleSafeArray [MFC], DestroyData", "COleSafeArray [MFC], DestroyDescriptor", "COleSafeArray [MFC], Detach", "COleSafeArray [MFC], GetByteArray", "COleSafeArray [MFC], GetDim", "COleSafeArray [MFC], GetElement", "COleSafeArray [MFC], GetElemSize", "COleSafeArray [MFC], GetLBound", "COleSafeArray [MFC], GetOneDimSize", "COleSafeArray [MFC], GetUBound", "COleSafeArray [MFC], Lock", "COleSafeArray [MFC], PtrOfIndex", "COleSafeArray [MFC], PutElement", "COleSafeArray [MFC], Redim", "COleSafeArray [MFC], ResizeOneDim", "COleSafeArray [MFC], UnaccessData", "COleSafeArray [MFC], Unlock"]
7-
ms.assetid: f45a5224-5f48-40ec-9ddd-287ef9740150
87
---
98
# COleSafeArray Class
109

@@ -554,11 +553,14 @@ A brief description of each operator follows:
554553
This operator compares two arrays (`SAFEARRAY`, `VARIANT`, `COleVariant`, or `COleSafeArray` arrays) and returns nonzero if they are equal; otherwise 0.
555554

556555
```
557-
BOOL operator==(const SAFEARRAY& saSrc) const; BOOL operator==(LPCSAFEARRAY pSrc) const;
556+
BOOL operator==(const SAFEARRAY& saSrc) const;
557+
BOOL operator==(LPCSAFEARRAY pSrc) const;
558558
559-
BOOL operator==(const COleSafeArray& saSrc) const; BOOL operator==(const VARIANT& varSrc) const;
559+
BOOL operator==(const COleSafeArray& saSrc) const;
560+
BOOL operator==(const VARIANT& varSrc) const;
560561
561-
BOOL operator==(LPCVARIANT pSrc) const; BOOL operator==(const COleVariant& varSrc) const;
562+
BOOL operator==(LPCVARIANT pSrc) const;
563+
BOOL operator==(const COleVariant& varSrc) const;
562564
```
563565

564566
### Remarks

docs/mfc/reference/cricheditctrl-class.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: CRichEditCtrl Class"
32
title: "CRichEditCtrl Class"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: CRichEditCtrl Class"
4+
ms.date: 11/04/2016
55
f1_keywords: ["CRichEditCtrl", "AFXCMN/CRichEditCtrl", "AFXCMN/CRichEditCtrl::CRichEditCtrl", "AFXCMN/CRichEditCtrl::CanPaste", "AFXCMN/CRichEditCtrl::CanRedo", "AFXCMN/CRichEditCtrl::CanUndo", "AFXCMN/CRichEditCtrl::CharFromPos", "AFXCMN/CRichEditCtrl::Clear", "AFXCMN/CRichEditCtrl::Copy", "AFXCMN/CRichEditCtrl::Create", "AFXCMN/CRichEditCtrl::CreateEx", "AFXCMN/CRichEditCtrl::Cut", "AFXCMN/CRichEditCtrl::DisplayBand", "AFXCMN/CRichEditCtrl::EmptyUndoBuffer", "AFXCMN/CRichEditCtrl::FindText", "AFXCMN/CRichEditCtrl::FindWordBreak", "AFXCMN/CRichEditCtrl::FormatRange", "AFXCMN/CRichEditCtrl::GetCharPos", "AFXCMN/CRichEditCtrl::GetDefaultCharFormat", "AFXCMN/CRichEditCtrl::GetEventMask", "AFXCMN/CRichEditCtrl::GetFirstVisibleLine", "AFXCMN/CRichEditCtrl::GetIRichEditOle", "AFXCMN/CRichEditCtrl::GetLimitText", "AFXCMN/CRichEditCtrl::GetLine", "AFXCMN/CRichEditCtrl::GetLineCount", "AFXCMN/CRichEditCtrl::GetModify", "AFXCMN/CRichEditCtrl::GetOptions", "AFXCMN/CRichEditCtrl::GetParaFormat", "AFXCMN/CRichEditCtrl::GetPunctuation", "AFXCMN/CRichEditCtrl::GetRect", "AFXCMN/CRichEditCtrl::GetRedoName", "AFXCMN/CRichEditCtrl::GetSel", "AFXCMN/CRichEditCtrl::GetSelectionCharFormat", "AFXCMN/CRichEditCtrl::GetSelectionType", "AFXCMN/CRichEditCtrl::GetSelText", "AFXCMN/CRichEditCtrl::GetTextLength", "AFXCMN/CRichEditCtrl::GetTextLengthEx", "AFXCMN/CRichEditCtrl::GetTextMode", "AFXCMN/CRichEditCtrl::GetTextRange", "AFXCMN/CRichEditCtrl::GetUndoName", "AFXCMN/CRichEditCtrl::GetWordWrapMode", "AFXCMN/CRichEditCtrl::HideSelection", "AFXCMN/CRichEditCtrl::LimitText", "AFXCMN/CRichEditCtrl::LineFromChar", "AFXCMN/CRichEditCtrl::LineIndex", "AFXCMN/CRichEditCtrl::LineLength", "AFXCMN/CRichEditCtrl::LineScroll", "AFXCMN/CRichEditCtrl::Paste", "AFXCMN/CRichEditCtrl::PasteSpecial", "AFXCMN/CRichEditCtrl::PosFromChar", "AFXCMN/CRichEditCtrl::Redo", "AFXCMN/CRichEditCtrl::ReplaceSel", "AFXCMN/CRichEditCtrl::RequestResize", "AFXCMN/CRichEditCtrl::SetAutoURLDetect", "AFXCMN/CRichEditCtrl::SetBackgroundColor", "AFXCMN/CRichEditCtrl::SetDefaultCharFormat", "AFXCMN/CRichEditCtrl::SetEventMask", "AFXCMN/CRichEditCtrl::SetModify", "AFXCMN/CRichEditCtrl::SetOLECallback", "AFXCMN/CRichEditCtrl::SetOptions", "AFXCMN/CRichEditCtrl::SetParaFormat", "AFXCMN/CRichEditCtrl::SetPunctuation", "AFXCMN/CRichEditCtrl::SetReadOnly", "AFXCMN/CRichEditCtrl::SetRect", "AFXCMN/CRichEditCtrl::SetSel", "AFXCMN/CRichEditCtrl::SetSelectionCharFormat", "AFXCMN/CRichEditCtrl::SetTargetDevice", "AFXCMN/CRichEditCtrl::SetTextMode", "AFXCMN/CRichEditCtrl::SetUndoLimit", "AFXCMN/CRichEditCtrl::SetWordCharFormat", "AFXCMN/CRichEditCtrl::SetWordWrapMode", "AFXCMN/CRichEditCtrl::StopGroupTyping", "AFXCMN/CRichEditCtrl::StreamIn", "AFXCMN/CRichEditCtrl::StreamOut", "AFXCMN/CRichEditCtrl::Undo"]
66
helpviewer_keywords: ["CRichEditCtrl [MFC], CRichEditCtrl", "CRichEditCtrl [MFC], CanPaste", "CRichEditCtrl [MFC], CanRedo", "CRichEditCtrl [MFC], CanUndo", "CRichEditCtrl [MFC], CharFromPos", "CRichEditCtrl [MFC], Clear", "CRichEditCtrl [MFC], Copy", "CRichEditCtrl [MFC], Create", "CRichEditCtrl [MFC], CreateEx", "CRichEditCtrl [MFC], Cut", "CRichEditCtrl [MFC], DisplayBand", "CRichEditCtrl [MFC], EmptyUndoBuffer", "CRichEditCtrl [MFC], FindText", "CRichEditCtrl [MFC], FindWordBreak", "CRichEditCtrl [MFC], FormatRange", "CRichEditCtrl [MFC], GetCharPos", "CRichEditCtrl [MFC], GetDefaultCharFormat", "CRichEditCtrl [MFC], GetEventMask", "CRichEditCtrl [MFC], GetFirstVisibleLine", "CRichEditCtrl [MFC], GetIRichEditOle", "CRichEditCtrl [MFC], GetLimitText", "CRichEditCtrl [MFC], GetLine", "CRichEditCtrl [MFC], GetLineCount", "CRichEditCtrl [MFC], GetModify", "CRichEditCtrl [MFC], GetOptions", "CRichEditCtrl [MFC], GetParaFormat", "CRichEditCtrl [MFC], GetPunctuation", "CRichEditCtrl [MFC], GetRect", "CRichEditCtrl [MFC], GetRedoName", "CRichEditCtrl [MFC], GetSel", "CRichEditCtrl [MFC], GetSelectionCharFormat", "CRichEditCtrl [MFC], GetSelectionType", "CRichEditCtrl [MFC], GetSelText", "CRichEditCtrl [MFC], GetTextLength", "CRichEditCtrl [MFC], GetTextLengthEx", "CRichEditCtrl [MFC], GetTextMode", "CRichEditCtrl [MFC], GetTextRange", "CRichEditCtrl [MFC], GetUndoName", "CRichEditCtrl [MFC], GetWordWrapMode", "CRichEditCtrl [MFC], HideSelection", "CRichEditCtrl [MFC], LimitText", "CRichEditCtrl [MFC], LineFromChar", "CRichEditCtrl [MFC], LineIndex", "CRichEditCtrl [MFC], LineLength", "CRichEditCtrl [MFC], LineScroll", "CRichEditCtrl [MFC], Paste", "CRichEditCtrl [MFC], PasteSpecial", "CRichEditCtrl [MFC], PosFromChar", "CRichEditCtrl [MFC], Redo", "CRichEditCtrl [MFC], ReplaceSel", "CRichEditCtrl [MFC], RequestResize", "CRichEditCtrl [MFC], SetAutoURLDetect", "CRichEditCtrl [MFC], SetBackgroundColor", "CRichEditCtrl [MFC], SetDefaultCharFormat", "CRichEditCtrl [MFC], SetEventMask", "CRichEditCtrl [MFC], SetModify", "CRichEditCtrl [MFC], SetOLECallback", "CRichEditCtrl [MFC], SetOptions", "CRichEditCtrl [MFC], SetParaFormat", "CRichEditCtrl [MFC], SetPunctuation", "CRichEditCtrl [MFC], SetReadOnly", "CRichEditCtrl [MFC], SetRect", "CRichEditCtrl [MFC], SetSel", "CRichEditCtrl [MFC], SetSelectionCharFormat", "CRichEditCtrl [MFC], SetTargetDevice", "CRichEditCtrl [MFC], SetTextMode", "CRichEditCtrl [MFC], SetUndoLimit", "CRichEditCtrl [MFC], SetWordCharFormat", "CRichEditCtrl [MFC], SetWordWrapMode", "CRichEditCtrl [MFC], StopGroupTyping", "CRichEditCtrl [MFC], StreamIn", "CRichEditCtrl [MFC], StreamOut", "CRichEditCtrl [MFC], Undo"]
7-
ms.assetid: 2be52788-822c-4c27-aafd-2471231e74eb
87
---
98
# `CRichEditCtrl` Class
109

@@ -553,7 +552,8 @@ For more information, see [`EM_POSFROMCHAR`](/windows/win32/Controls/em-posfromc
553552
Gets the default character formatting attributes of this `CRichEditCtrl` object.
554553

555554
```
556-
DWORD GetDefaultCharFormat(CHARFORMAT& cf) const; DWORD GetDefaultCharFormat(CHARFORMAT2& cf) const;
555+
DWORD GetDefaultCharFormat(CHARFORMAT& cf) const;
556+
DWORD GetDefaultCharFormat(CHARFORMAT2& cf) const;
557557
```
558558

559559
### Parameters
@@ -759,7 +759,8 @@ A combination of the current option flag values. For a list of these values, see
759759
Gets the paragraph formatting attributes of the current selection.
760760

761761
```
762-
DWORD GetParaFormat(PARAFORMAT& pf) const; DWORD GetParaFormat(PARAFORMAT2& pf) const;
762+
DWORD GetParaFormat(PARAFORMAT& pf) const;
763+
DWORD GetParaFormat(PARAFORMAT2& pf) const;
763764
```
764765

765766
### Parameters
@@ -892,7 +893,8 @@ For more information, see [`EM_EXGETSEL`](/windows/win32/Controls/em-exgetsel) m
892893
Gets the character formatting attributes of the current selection.
893894

894895
```
895-
DWORD GetSelectionCharFormat(CHARFORMAT& cf) const; DWORD GetSelectionCharFormat(CHARFORMAT2& cf) const;
896+
DWORD GetSelectionCharFormat(CHARFORMAT& cf) const;
897+
DWORD GetSelectionCharFormat(CHARFORMAT2& cf) const;
896898
```
897899

898900
### Parameters
@@ -951,7 +953,8 @@ For more information, see [`EM_SELECTIONTYPE`](/windows/win32/Controls/em-select
951953
Retrieves the text from the current selection in this `CRichEditCtrl` object.
952954

953955
```
954-
long GetSelText(LPSTR lpBuf) const; CString GetSelText() const;
956+
long GetSelText(LPSTR lpBuf) const;
957+
CString GetSelText() const;
955958
```
956959

957960
### Parameters

docs/mfc/reference/cspinbuttonctrl-class.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "CSpinButtonCtrl Class"
33
description: "Learn more about: CSpinButtonCtrl Class"
4-
ms.date: "11/04/2016"
4+
ms.date: 11/04/2016
55
f1_keywords: ["CSpinButtonCtrl", "AFXCMN/CSpinButtonCtrl", "AFXCMN/CSpinButtonCtrl::CSpinButtonCtrl", "AFXCMN/CSpinButtonCtrl::Create", "AFXCMN/CSpinButtonCtrl::CreateEx", "AFXCMN/CSpinButtonCtrl::GetAccel", "AFXCMN/CSpinButtonCtrl::GetBase", "AFXCMN/CSpinButtonCtrl::GetBuddy", "AFXCMN/CSpinButtonCtrl::GetPos", "AFXCMN/CSpinButtonCtrl::GetRange", "AFXCMN/CSpinButtonCtrl::SetAccel", "AFXCMN/CSpinButtonCtrl::SetBase", "AFXCMN/CSpinButtonCtrl::SetBuddy", "AFXCMN/CSpinButtonCtrl::SetPos", "AFXCMN/CSpinButtonCtrl::SetRange"]
66
helpviewer_keywords: ["CSpinButtonCtrl [MFC], CSpinButtonCtrl", "CSpinButtonCtrl [MFC], Create", "CSpinButtonCtrl [MFC], CreateEx", "CSpinButtonCtrl [MFC], GetAccel", "CSpinButtonCtrl [MFC], GetBase", "CSpinButtonCtrl [MFC], GetBuddy", "CSpinButtonCtrl [MFC], GetPos", "CSpinButtonCtrl [MFC], GetRange", "CSpinButtonCtrl [MFC], SetAccel", "CSpinButtonCtrl [MFC], SetBase", "CSpinButtonCtrl [MFC], SetBuddy", "CSpinButtonCtrl [MFC], SetPos", "CSpinButtonCtrl [MFC], SetRange"]
77
---
@@ -201,7 +201,8 @@ A pointer to the current buddy window.
201201
Retrieves the current position of a spin button control.
202202

203203
```
204-
int GetPos() const; int GetPos32(LPBOOL lpbError = NULL) const;
204+
int GetPos() const;
205+
int GetPos32(LPBOOL lpbError = NULL) const;
205206
```
206207

207208
### Parameters

docs/mfc/reference/cstatusbar-class.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: CStatusBar Class"
32
title: "CStatusBar Class"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: CStatusBar Class"
4+
ms.date: 11/04/2016
55
f1_keywords: ["CStatusBar", "AFXEXT/CStatusBar", "AFXEXT/CStatusBar::CStatusBar", "AFXEXT/CStatusBar::CommandToIndex", "AFXEXT/CStatusBar::Create", "AFXEXT/CStatusBar::CreateEx", "AFXEXT/CStatusBar::DrawItem", "AFXEXT/CStatusBar::GetItemID", "AFXEXT/CStatusBar::GetItemRect", "AFXEXT/CStatusBar::GetPaneInfo", "AFXEXT/CStatusBar::GetPaneStyle", "AFXEXT/CStatusBar::GetPaneText", "AFXEXT/CStatusBar::GetStatusBarCtrl", "AFXEXT/CStatusBar::SetIndicators", "AFXEXT/CStatusBar::SetPaneInfo", "AFXEXT/CStatusBar::SetPaneStyle", "AFXEXT/CStatusBar::SetPaneText"]
66
helpviewer_keywords: ["CStatusBar [MFC], CStatusBar", "CStatusBar [MFC], CommandToIndex", "CStatusBar [MFC], Create", "CStatusBar [MFC], CreateEx", "CStatusBar [MFC], DrawItem", "CStatusBar [MFC], GetItemID", "CStatusBar [MFC], GetItemRect", "CStatusBar [MFC], GetPaneInfo", "CStatusBar [MFC], GetPaneStyle", "CStatusBar [MFC], GetPaneText", "CStatusBar [MFC], GetStatusBarCtrl", "CStatusBar [MFC], SetIndicators", "CStatusBar [MFC], SetPaneInfo", "CStatusBar [MFC], SetPaneStyle", "CStatusBar [MFC], SetPaneText"]
7-
ms.assetid: a3bde3db-e71c-4881-a3ca-1d5481c345ba
87
---
98
# CStatusBar Class
109

@@ -306,7 +305,8 @@ For a list of styles available for status bars, see [Create](#create).
306305
Call this member function to retrieve the text that appears in a status-bar pane.
307306

308307
```
309-
CString GetPaneText(int nIndex) const; void GetPaneText(int nIndex, CString& rString) const;
308+
CString GetPaneText(int nIndex) const;
309+
void GetPaneText(int nIndex, CString& rString) const;
310310
```
311311

312312
### Parameters

docs/mfc/reference/cwinapp-class.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,8 @@ Taskbar interaction means that MDI application displays the content of MDI child
896896
Loads the cursor resource named by *lpszResourceName* or specified by *nIDResource* from the current executable file.
897897

898898
```
899-
HCURSOR LoadCursor(LPCTSTR lpszResourceName) const; HCURSOR LoadCursor(UINT nIDResource) const;
899+
HCURSOR LoadCursor(LPCTSTR lpszResourceName) const;
900+
HCURSOR LoadCursor(UINT nIDResource) const;
900901
```
901902

902903
### Parameters
@@ -926,7 +927,8 @@ Use the [LoadStandardCursor](#loadstandardcursor) or [LoadOEMCursor](#loadoemcur
926927
Loads the icon resource named by *lpszResourceName* or specified by *nIDResource* from the executable file.
927928

928929
```
929-
HICON LoadIcon(LPCTSTR lpszResourceName) const; HICON LoadIcon(UINT nIDResource) const;
930+
HICON LoadIcon(LPCTSTR lpszResourceName) const;
931+
HICON LoadIcon(UINT nIDResource) const;
930932
```
931933

932934
### Parameters

docs/mfc/reference/cwnd-class.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1024,7 +1024,8 @@ The `CWnd`* that is returned may be temporary and shouldn't be stored for later
10241024
Converts the client coordinates of a given point or rectangle on the display to screen coordinates.
10251025

10261026
```cpp
1027-
void ClientToScreen(LPPOINT lpPoint) const; void ClientToScreen(LPRECT lpRect) const;
1027+
void ClientToScreen(LPPOINT lpPoint) const;
1028+
void ClientToScreen(LPRECT lpRect) const;
10281029
```
10291030

10301031
### Parameters
@@ -10174,7 +10175,8 @@ By default, `ContinueModal` returns `FALSE` after `EndModalLoop` is called. Retu
1017410175
Converts the screen coordinates of a given point or rectangle on the display to client coordinates.
1017510176

1017610177
```cpp
10177-
void ScreenToClient(LPPOINT lpPoint) const; void ScreenToClient(LPRECT lpRect) const;
10178+
void ScreenToClient(LPPOINT lpPoint) const;
10179+
void ScreenToClient(LPRECT lpRect) const;
1017810180
```
1017910181

1018010182
### Parameters

0 commit comments

Comments
 (0)