https://bugs.documentfoundation.org/show_bug.cgi?id=145384
--- Comment #5 from Dave McKellar <[email protected]> --- Perhaps use standard functions for that code: if (!isalpha(cChar)) break if (islower(cChar)) cChar = toupper(cChar); cChar -= 'A'; To replace: if ((cChar<'A' || cChar>'Z') && (cChar<'a' || cChar>'z')) break; cChar -= 'A'; if( cChar >= 26 ) cChar -= 'a' - '['; -- You are receiving this mail because: You are the assignee for the bug.
