Skip to content

Commit 60b47a0

Browse files
committed
typo: lable -> label
1 parent 551f137 commit 60b47a0

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

docs/vs-2015/snippets/cpp/VS_Snippets_Misc/NVC_MFC_VisualStudioDemo/cpp/visualstudiodemo.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
<None Include="res\help24.bmp" />
216216
<None Include="res\img_inte_hc.bmp" />
217217
<None Include="res\intellisense.bmp" />
218-
<None Include="res\lable.bmp" />
218+
<None Include="res\label.bmp" />
219219
<None Include="res\menuimages.bmp" />
220220
<None Include="res\menuimages24.bmp" />
221221
<None Include="res\optionsimages.bmp" />

docs/vs-2015/snippets/cpp/VS_Snippets_Winforms/ListView.AfterLabelEdit/CPP/form1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ namespace ListViewAfterLabelEditEx
118118
// Determine if the ASCII code is within the valid range of numerical values.
119119
if ( bc[ 0 ] > 47 && bc[ 0 ] < 58 )
120120
{
121-
// Cancel the event and return the lable to its original state.
121+
// Cancel the event and return the label to its original state.
122122
e->CancelEdit = true;
123123

124124
// Display a MessageBox alerting the user that numbers are not allowed.

docs/vs-2015/snippets/csharp/VS_Snippets_Winforms/Label_Image/CS/form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Windows.Forms;
66
using System.Data;
77

8-
namespace Lable_Cs
8+
namespace Label_Cs
99
{
1010
/// <summary>
1111
/// Summary description for Form1.

docs/vs-2015/snippets/csharp/VS_Snippets_Winforms/ListView.AfterLabelEdit/CS/form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ private void MyListView_AfterLabelEdit(object sender, System.Windows.Forms.Label
121121
// Determine if the ASCII code is within the valid range of numerical values.
122122
if(bc[0] > 47 && bc[0] < 58)
123123
{
124-
// Cancel the event and return the lable to its original state.
124+
// Cancel the event and return the label to its original state.
125125
e.CancelEdit = true;
126126
// Display a MessageBox alerting the user that numbers are not allowed.
127127
MessageBox.Show ("The text for the item cannot contain numerical values.");

docs/vs-2015/snippets/visualbasic/VS_Snippets_Winforms/ListView.AfterLabelEdit/VB/form1.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Namespace ListViewAfterLabelEditEx
7474

7575
' Determine if the ASCII code is within the valid range of numerical values.
7676
If bc(0) > 47 And bc(0) < 58 Then
77-
' Cancel the event and return the lable to its original state.
77+
' Cancel the event and return the label to its original state.
7878
e.CancelEdit = True
7979
' Display a MessageBox alerting the user that numbers are not allowed.
8080
MessageBox.Show("The text for the item cannot contain numerical values.")

0 commit comments

Comments
 (0)