https://bugs.documentfoundation.org/show_bug.cgi?id=142494

--- Comment #5 from Jamie Douglass <[email protected]> ---
I can confirm that this bug is still present in version 7.5.5.2 (x86_64), which
is the latest version I can get through my package manager.
I agree that this bug is not a huge issue, but it would be nice to have it
fixed.

>From a quick looks, it seems like replacing these two lines:
sal_uLong nWord = selectionStats.nWord ? selectionStats.nWord :
documentStats.nWord;
sal_uLong nChar = selectionStats.nChar ? selectionStats.nChar :
documentStats.nChar;

with the following two lines:
sal_uLong nChar = selectionStats.nChar ? selectionStats.nChar :
documentStats.nChar;
sal_uLong nWord = (selectionStats.nWord + selectionStats.nChar) ?
selectionStats.nWord : documentStats.nWord;

would solve the issue.

My question is: Is it worth investigating this issue, or just considering the
information shown as a feature rather than a bug? Despite its inaccuracy, maybe
it's more useful?

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to