From a16452bc341bebbff8ac15ea5737ff0e76cf219a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Wed, 7 Jan 2004 15:09:51 +0000 Subject: [PATCH] new LFUN_WORD_REPLACE and LFUN_WORD_FIND git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8317 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/LyXAction.C | 2 ++ src/lfuns.h | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/LyXAction.C b/src/LyXAction.C index 228c995fd0..f424e4c8d8 100644 --- a/src/LyXAction.C +++ b/src/LyXAction.C @@ -323,6 +323,8 @@ void LyXAction::init() { LFUN_PARAGRAPH_UPDATE, "", Noop }, { LFUN_EXTERNAL_EDIT, "external-edit", Noop }, { LFUN_REPEAT, "repeat", NoBuffer }, + { LFUN_WORD_FIND, "word-find", Noop }, + { LFUN_WORD_REPLACE, "word-replace", Noop }, { LFUN_NOACTION, "", Noop } }; diff --git a/src/lfuns.h b/src/lfuns.h index 412cbab53a..40ffc22c1f 100644 --- a/src/lfuns.h +++ b/src/lfuns.h @@ -331,8 +331,11 @@ enum kb_action { LFUN_FINISHED_UP, LFUN_FINISHED_DOWN, LFUN_INSERT_CHARSTYLE, - LFUN_LASTACTION // end of the table + LFUN_WORD_FIND, // 255 + LFUN_WORD_REPLACE, + + LFUN_LASTACTION // end of the table }; std::ostream & operator<<(std::ostream &, kb_action);