Skip to content

Commit 2f14337

Browse files
authored
Merge pull request #10902 from changeworld/patch-3
Fix typo: Properies -> Properties
2 parents 59071ba + 42d3d98 commit 2f14337

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_DrawClient/cpp/PropertiesViewBar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ int CPropertiesViewBar::OnCreate(LPCREATESTRUCT lpCreateStruct)
7373

7474
if (!m_wndPropList.Create (WS_VISIBLE | WS_CHILD, rectDummy, this, 2))
7575
{
76-
TRACE0("Failed to create Properies Grid \n");
76+
TRACE0("Failed to create Properties Grid \n");
7777
return -1; // fail to create
7878
}
7979

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_MDITabsDemo/cpp/WorkspaceBar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ int CWorkspaceBar::OnCreate(LPCREATESTRUCT lpCreateStruct)
7575

7676
if (!m_wndPropList.Create (WS_VISIBLE | WS_CHILD, rectDummy, this, 1))
7777
{
78-
TRACE0("Failed to create Properies Grid \n");
78+
TRACE0("Failed to create Properties Grid \n");
7979
return -1; // fail to create
8080
}
8181

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_VisualStudioDemo/cpp/PropertiesViewBar.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ int CPropertiesViewBar::OnCreate(LPCREATESTRUCT lpCreateStruct)
8181

8282
if (!m_wndObjectCombo.Create(dwViewStyle, rectDummy, this, 1))
8383
{
84-
TRACE0("Failed to create Properies Combo \n");
84+
TRACE0("Failed to create Properties Combo \n");
8585
return -1; // fail to create
8686
}
8787

@@ -91,7 +91,7 @@ int CPropertiesViewBar::OnCreate(LPCREATESTRUCT lpCreateStruct)
9191

9292
if (!m_wndPropList.Create(WS_VISIBLE | WS_CHILD, rectDummy, this, 2))
9393
{
94-
TRACE0("Failed to create Properies Grid \n");
94+
TRACE0("Failed to create Properties Grid \n");
9595
return -1; // fail to create
9696
}
9797

0 commit comments

Comments
 (0)