Skip to content

Commit f2fd659

Browse files
authored
Merge pull request #10798 from changeworld/patch-1
Fix typo: scaning -> scanning
2 parents 2513203 + ad4d7da commit f2fd659

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
lines changed

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_CustomPages/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ void CMainFrame::OnViewCustomize()
144144
//------------------------------------
145145
// <snippet3>
146146
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
147-
TRUE /* Automatic menus scaning */,
147+
TRUE /* Automatic menus scanning */,
148148
AFX_CUSTOMIZE_MENU_SHADOWS | AFX_CUSTOMIZE_TEXT_LABELS |
149149
AFX_CUSTOMIZE_MENU_ANIMATIONS, // default parameters
150150
&lstCustomPages); // pointer to the list of runtime classes of the custom property pages

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_Explorer/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ void CMainFrame::OnViewCustomize()
229229
// Create a customize toolbars dialog:
230230
//------------------------------------
231231
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
232-
TRUE /* Automatic menus scaning */
232+
TRUE /* Automatic menus scanning */
233233
);
234234

235235
pDlgCust->Create ();

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_IEDemo/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ void CMainFrame::OnViewCustomize()
342342
// Create a customize toolbars dialog:
343343
//------------------------------------
344344
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
345-
TRUE /* Automatic menus scaning */,
345+
TRUE /* Automatic menus scanning */,
346346
AFX_CUSTOMIZE_TEXT_LABELS | AFX_CUSTOMIZE_NOTOOLS | AFX_CUSTOMIZE_NO_LARGE_ICONS);
347347

348348
CMenu menuFavorites;

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_MDITabsDemo/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ void CMainFrame::OnViewCustomize()
234234
// Create a customize toolbars dialog:
235235
//------------------------------------
236236
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
237-
TRUE /* Automatic menus scaning */
237+
TRUE /* Automatic menus scanning */
238238
);
239239

240240
pDlgCust->Create ();

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_OutlookDemo/cpp/MailFrame.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ void CMailFrame::OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized)
154154
void CMailFrame::OnViewCustomize()
155155
{
156156
// Create a customize toolbars dialog:
157-
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog(this, TRUE /* Automatic menus scaning */);
157+
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog(this, TRUE /* Automatic menus scanning */);
158158
pDlgCust->Create();
159159
}
160160

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_OutlookDemo/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ void CMainFrame::Dump(CDumpContext& dc) const
309309
void CMainFrame::OnViewCustomize()
310310
{
311311
// Create a customize toolbars dialog:
312-
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog(this, TRUE /* Automatic menus scaning */);
312+
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog(this, TRUE /* Automatic menus scanning */);
313313

314314
pDlgCust->EnableUserDefinedToolbars();
315315
pDlgCust->Create();

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_OutlookMultiViews/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ void CMainFrame::OnViewCustomize()
205205
// Create a customize toolbars dialog:
206206
//------------------------------------
207207
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
208-
TRUE /* Automatic menus scaning */
208+
TRUE /* Automatic menus scanning */
209209
);
210210

211211
pDlgCust->Create ();

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_RebarTest/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ void CMainFrame::OnViewCustomize()
235235
// Create a customize toolbars dialog:
236236
//------------------------------------
237237
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
238-
TRUE /* Automatic menus scaning */);
238+
TRUE /* Automatic menus scanning */);
239239

240240
pDlgCust->EnableUserDefinedToolbars ();
241241
pDlgCust->Create ();

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_SetPaneSize/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ void CMainFrame::OnViewCustomize()
200200
// Create a customize toolbars dialog:
201201
//------------------------------------
202202
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
203-
TRUE /* Automatic menus scaning */
203+
TRUE /* Automatic menus scanning */
204204
);
205205

206206
pDlgCust->Create ();

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_Slider/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ void CMainFrame::OnViewCustomize()
162162
//------------------------------------
163163
// <snippet1>
164164
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
165-
TRUE /* Automatic menus scaning */);
165+
TRUE /* Automatic menus scanning */);
166166

167167
CSliderButton btnSlider (ID_SLIDER);
168168
btnSlider.SetRange (0, 100);

0 commit comments

Comments
 (0)