mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
01aa8d771a
commit
8a35204454
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user