mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Initialize FindAndReplaceOptions in default constructor
Found by coverity
This commit is contained in:
parent
bad511f3fe
commit
76f45b351d
@ -101,7 +101,8 @@ public:
|
|||||||
SearchScope scope = S_BUFFER,
|
SearchScope scope = S_BUFFER,
|
||||||
SearchRestriction restr = R_EVERYTHING
|
SearchRestriction restr = R_EVERYTHING
|
||||||
);
|
);
|
||||||
FindAndReplaceOptions() {}
|
FindAndReplaceOptions() : casesensitive(false), matchword(false), forward(false),
|
||||||
|
expandmacros(false), ignoreformat(false) {}
|
||||||
docstring find_buf_name;
|
docstring find_buf_name;
|
||||||
bool casesensitive;
|
bool casesensitive;
|
||||||
bool matchword;
|
bool matchword;
|
||||||
|
Loading…
Reference in New Issue
Block a user