Make text display right in summary panel

Close #5037

User @buggalicious found the summary text is displaying a count of characters without line endings not blanks.
Patch should address #3849 by updating the text to describe what is actually being counted.
This commit is contained in:
Kovra 2018-11-20 14:33:03 +11:00 committed by Don HO
parent 184a6f6ce5
commit 4f67c09859

View File

@ -1956,7 +1956,7 @@ void Notepad_plus::command(int id)
characterNumber += TEXT("\r");
characterNumber += TEXT("\r");
}
const TCHAR *nbCharLabel = TEXT("Characters (without blanks): ");
const TCHAR *nbCharLabel = TEXT("Characters (without line endings): ");
const TCHAR *nbWordLabel = TEXT("Words: ");
const TCHAR *nbLineLabel = TEXT("Lines: ");
const TCHAR *nbByteLabel = TEXT("Current document length: ");