I myself don't understand the Notion line taken from the source code.
LFUN_ALL_CHANGES_REJECT is currently broken, so I can't test.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25554 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-07-11 00:31:41 +00:00
parent 08165a71bb
commit 8dfd3c5ed4

View File

@ -1893,7 +1893,22 @@ void LyXAction::init()
* \endvar
*/
{ LFUN_CHANGE_REJECT, "change-reject", Noop, Edit },
/*!
* \var lyx::FuncCode lyx::LFUN_ALL_CHANGES_ACCEPT
* \li Action: Accepts all tracked changes in the document.
* \li Syntax: all-changes-accept
* \li Origin: Levon, 16 Oct 2002
* \endvar
*/
{ LFUN_ALL_CHANGES_ACCEPT, "all-changes-accept", Noop, Edit },
/*!
* \var lyx::FuncCode lyx::LFUN_ALL_CHANGES_REJECT
* \li Action: Rejects all tracked changes in the document.
* \li Notion: Reject does not work recursively; the user may have to repeat the operation.
* \li Syntax: all-changes-reject
* \li Origin: Levon, 16 Oct 2002
* \endvar
*/
{ LFUN_ALL_CHANGES_REJECT, "all-changes-reject", Noop, Edit },
/*!