]> git.lyx.org Git - lyx.git/blob - src/lyxfind.h
Remove unused font variable which caused a warning.
[lyx.git] / src / lyxfind.h
1 // -*- C++ -*-
2 #ifndef LYXFIND_H
3 #define LYXFIND_H
4
5 #ifdef __GNUG__
6 #pragma interface
7 #endif
8
9 #include "LString.h"
10 #include "paragraph.h"
11
12 class BufferView;
13
14 int LyXReplace(BufferView * bv, string const &, string const &,
15                bool const &, bool const & = true, bool const & = false,
16                bool const & = false);
17
18 bool LyXFind(BufferView *,
19              string const & searchstr, bool const & forward,
20                          bool const & frominset = false,
21              bool const & casesens = true, bool const & matchwrd = false);
22
23 #endif