]> git.lyx.org Git - lyx.git/commitdiff
Fix warnings
authorRichard Kimberly Heck <rikiheck@lyx.org>
Sun, 23 Aug 2020 09:48:02 +0000 (05:48 -0400)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Sun, 23 Aug 2020 09:48:15 +0000 (05:48 -0400)
src/lyxfind.cpp

index 70de6c96a816164aadd5da2ddb6fa88b1243a71a..c3b59bb302312920740678aed9dc4b7e92665efb 100644 (file)
@@ -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);