Skip to content

Commit 04a80c7

Browse files
authored
Feedback implemented...
1 parent 7f808eb commit 04a80c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/mfc/reference/ccolordialog-class.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ A `CColorDialog` object is a dialog box with a list of colors that are defined f
5050

5151
To construct a `CColorDialog` object, use the provided constructor or derive a new class and use your own custom constructor.
5252

53-
Once the dialog box has been constructed, you can set or modify any values in the [m_cc](#m_cc) structure to initialize the values of the dialog box's controls. The *m_cc* structure is of type [CHOOSECOLOR](/en-us/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1).
53+
Once the dialog box has been constructed, you can set or modify any values in the [m_cc](#m_cc) structure to initialize the values of the dialog box's controls. The *m_cc* structure is of type [CHOOSECOLOR](/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1).
5454

5555
After initializing the dialog box's controls, call the `DoModal` member function to display the dialog box and allow the user to select a color. `DoModal` returns the user's selection of either the dialog box's OK (IDOK) or Cancel (IDCANCEL) button.
5656

@@ -104,7 +104,7 @@ CColorDialog(
104104
The default color selection. If no value is specified, the default is RGB(0,0,0) (black).
105105

106106
*dwFlags*<br/>
107-
A set of flags that customize the function and appearance of the dialog box. For more information, see the [CHOOSECOLOR](/en-us/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1) structure in the Windows SDK.
107+
A set of flags that customize the function and appearance of the dialog box. For more information, see the [CHOOSECOLOR](/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1) structure in the Windows SDK.
108108

109109
*pParentWnd*<br/>
110110
A pointer to the dialog box's parent or owner window.
@@ -177,7 +177,7 @@ Each of the 16 RGB values in the returned array is initialized to RGB(255,255,25
177177

178178
## <a name="m_cc"></a> CColorDialog::m_cc
179179

180-
A structure of type [CHOOSECOLOR](/en-us/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1), whose members store the characteristics and values of the dialog box.
180+
A structure of type [CHOOSECOLOR](/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1), whose members store the characteristics and values of the dialog box.
181181

182182
```
183183
CHOOSECOLOR m_cc;

0 commit comments

Comments
 (0)