Add missing break and polish formatting.

This commit is contained in:
Juergen Spitzmueller 2018-02-07 10:16:05 +01:00
parent 9b23b49d41
commit c6861923f0

View File

@ -1619,11 +1619,12 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
}
case LFUN_BUFFER_ANONYMIZE: {
for(char c = '0'; c <='Z'; c++) {
odocstringstream ss;
ss << "a\n" << c << "\n0 0 1 1 0";
lyx::dispatch(FuncRequest(LFUN_WORD_REPLACE, ss.str()));
for (char c = '0'; c <= 'Z'; c++) {
odocstringstream ss;
ss << "a\n" << c << "\n0 0 1 1 0";
lyx::dispatch(FuncRequest(LFUN_WORD_REPLACE, ss.str()));
}
break;
}
case LFUN_WORD_FINDADV: {