]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfind.h
Fix lilypond support, patch from Julien Rioux, bug #6940.
[lyx.git] / src / lyxfind.h
index 7d660eed1180cc18959b6302c3f9d4c4a3806990..2401d073ce64aeeb82c348521a733671911a4810 100644 (file)
@@ -55,13 +55,15 @@ docstring const replace2string(docstring const & replace,
  * The string is encoded by \c find2string.
  * \return true if the string was found.
  */
-bool find(BufferView * bv, FuncRequest const & ev);
+bool lyxfind(BufferView * bv, FuncRequest const & ev);
 
 /** Parse the string encoding of the replace request that is found in
  *  \c ev.argument and act on it.
  * The string is encoded by \c replace2string.
+ * \return whether we did anything
  */
-void replace(BufferView * bv, FuncRequest const &, bool has_deleted = false);
+bool lyxreplace(BufferView * bv, 
+               FuncRequest const &, bool has_deleted = false);
 
 /// find the next change in the buffer
 bool findNextChange(BufferView * bv);
@@ -82,7 +84,7 @@ public:
                S_BUFFER,
                S_DOCUMENT,
                S_OPEN_BUFFERS,
-               /*S_ALL_MANUALS*/
+               S_ALL_MANUALS
        } SearchScope;
        FindAndReplaceOptions(
                docstring const & search,