From: Richard Kimberly Heck Date: Sun, 23 Aug 2020 09:48:02 +0000 (-0400) Subject: Fix warnings X-Git-Tag: lyx-2.4.0dev-acb2ca7b~324 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=17f9d6b192094be6b6e9b57d214cb0ec37297c58;p=lyx.git Fix warnings --- diff --git a/src/lyxfind.cpp b/src/lyxfind.cpp index 70de6c96a8..c3b59bb302 100644 --- a/src/lyxfind.cpp +++ b/src/lyxfind.cpp @@ -73,25 +73,25 @@ class IgnoreFormats { ignoreSectioning_(false), ignoreFrontMatter_(false), ignoreColor_(false), ignoreLanguage_(false) {} /// - bool getFamily() { return ignoreFamily_; }; + bool getFamily() { return ignoreFamily_; } /// - bool getSeries() { return ignoreSeries_; }; + bool getSeries() { return ignoreSeries_; } /// - bool getShape() { return ignoreShape_; }; + bool getShape() { return ignoreShape_; } /// - bool getUnderline() { return ignoreUnderline_; }; + bool getUnderline() { return ignoreUnderline_; } /// - bool getMarkUp() { return ignoreMarkUp_; }; + bool getMarkUp() { return ignoreMarkUp_; } /// - bool getStrikeOut() { return ignoreStrikeOut_; }; + bool getStrikeOut() { return ignoreStrikeOut_; } /// - bool getSectioning() { return ignoreSectioning_; }; + bool getSectioning() { return ignoreSectioning_; } /// - bool getFrontMatter() { return ignoreFrontMatter_; }; + bool getFrontMatter() { return ignoreFrontMatter_; } /// - bool getColor() { return ignoreColor_; }; + bool getColor() { return ignoreColor_; } /// - bool getLanguage() { return ignoreLanguage_; }; + bool getLanguage() { return ignoreLanguage_; } /// void setIgnoreFormat(string const & type, bool value);