From 4f67c09859bf198d556b22eb847bbc7cf9508573 Mon Sep 17 00:00:00 2001 From: Kovra Date: Tue, 20 Nov 2018 14:33:03 +1100 Subject: [PATCH] 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. --- PowerEditor/src/NppCommands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerEditor/src/NppCommands.cpp b/PowerEditor/src/NppCommands.cpp index e920340d..234f9370 100644 --- a/PowerEditor/src/NppCommands.cpp +++ b/PowerEditor/src/NppCommands.cpp @@ -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: ");