lyxfind.cpp/h: make LyX compilable

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31163 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2009-08-20 00:28:34 +00:00
parent 01aa8d771a
commit 8a35204454
2 changed files with 4 additions and 5 deletions

View File

@ -1049,12 +1049,9 @@ docstring stringifyFromForSearch(FindAndReplaceOptions const & opt,
}
lyx::FindAndReplaceOptions::FindAndReplaceOptions(docstring const & search, bool casesensitive,
FindAndReplaceOptions::FindAndReplaceOptions(docstring const & search, bool casesensitive,
bool matchword, bool forward, bool expandmacros, bool ignoreformat,
bool regexp, docstring const & replace, bool keep_case)
: search(search), casesensitive(casesensitive), matchword(matchword),
forward(forward), expandmacros(expandmacros), ignoreformat(ignoreformat),
regexp(regexp), replace(replace), keep_case(keep_case)
{
}

View File

@ -86,7 +86,8 @@ public:
bool expandmacros,
bool ignoreformat,
bool regexp,
docstring const & replace
docstring const & replace,
bool keep_case
);
FindAndReplaceOptions() { }
docstring search;
@ -97,6 +98,7 @@ public:
bool ignoreformat;
bool regexp;
docstring replace;
bool keep_case;
};
/// Write a FindAdvOptions instance to a stringstream