mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Add missing break and polish formatting.
This commit is contained in:
parent
9b23b49d41
commit
c6861923f0
@ -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: {
|
||||
|
Loading…
Reference in New Issue
Block a user