mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
LFUN_DOC_ANONYMIZE -> LFUN_BUFFER_ANONYMIZE per JMarc's suggestion.
This commit is contained in:
parent
584b83d33c
commit
89b7f12a3b
@ -1134,7 +1134,7 @@ bool BufferView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
|
||||
case LFUN_WORD_FIND_FORWARD:
|
||||
case LFUN_WORD_FIND_BACKWARD:
|
||||
case LFUN_WORD_REPLACE:
|
||||
case LFUN_DOC_ANONYMIZE:
|
||||
case LFUN_BUFFER_ANONYMIZE:
|
||||
case LFUN_MARK_OFF:
|
||||
case LFUN_MARK_ON:
|
||||
case LFUN_MARK_TOGGLE:
|
||||
@ -1618,7 +1618,7 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
|
||||
break;
|
||||
}
|
||||
|
||||
case LFUN_DOC_ANONYMIZE: {
|
||||
case LFUN_BUFFER_ANONYMIZE: {
|
||||
for(char c = '0'; c <='Z'; c++) {
|
||||
odocstringstream ss;
|
||||
ss << "a\n" << c << "\n0 0 1 1 0";
|
||||
|
@ -476,7 +476,7 @@ enum FuncCode
|
||||
LFUN_DEVEL_MODE_TOGGLE, // lasgouttes 20170723
|
||||
//370
|
||||
LFUN_EXPORT_CANCEL, // rgh, 20171227
|
||||
LFUN_DOC_ANONYMIZE, // sanda, 20180201
|
||||
LFUN_BUFFER_ANONYMIZE, // sanda, 20180201
|
||||
LFUN_LASTACTION // end of the table
|
||||
};
|
||||
|
||||
|
@ -4220,14 +4220,14 @@ void LyXAction::init()
|
||||
{ LFUN_WORD_REPLACE, "word-replace", Noop, Edit },
|
||||
|
||||
/*!
|
||||
* \var lyx::FuncCode lyx::LFUN_DOC_ANONYMIZE
|
||||
* \var lyx::FuncCode lyx::LFUN_BUFFER_ANONYMIZE
|
||||
* \li Action: For debug purposes only. Convert all [a-zA-Z0-1] characters to
|
||||
single character. Useful when submitting docs to list or bugzilla.
|
||||
* \li Syntax: doc-anonymize
|
||||
* \li Origin: sanda, Feb 1 2018
|
||||
* \endvar
|
||||
*/
|
||||
{ LFUN_DOC_ANONYMIZE, "doc-anonymize", Noop, Edit },
|
||||
{ LFUN_BUFFER_ANONYMIZE, "buffer-anonymize", Noop, Edit },
|
||||
|
||||
/*!
|
||||
* \var lyx::FuncCode lyx::LFUN_WORD_RIGHT
|
||||
|
Loading…
Reference in New Issue
Block a user