]> git.lyx.org Git - features.git/commitdiff
new LFUN_WORD_REPLACE and LFUN_WORD_FIND
authorAndré Pönitz <poenitz@gmx.net>
Wed, 7 Jan 2004 15:09:51 +0000 (15:09 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Wed, 7 Jan 2004 15:09:51 +0000 (15:09 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8317 a592a061-630c-0410-9148-cb99ea01b6c8

src/LyXAction.C
src/lfuns.h

index 228c995fd0ba3cf71cd2a8eb9a71799a75d1099b..f424e4c8d805b5bb5281599aee8b65e272454ef6 100644 (file)
@@ -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 }
        };
 
index 412cbab53aded51f5cecd05e12683ad3c417e527..40ffc22c1fcc780096e42aa4f710727825a1bb9d 100644 (file)
@@ -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);