[LyX/master] Fix warnings
Richard Kimberly Heck
rikiheck at lyx.org
Sun Aug 23 09:22:36 UTC 2020
commit 17f9d6b192094be6b6e9b57d214cb0ec37297c58
Author: Richard Kimberly Heck <rikiheck at lyx.org>
Date: Sun Aug 23 05:48:02 2020 -0400
Fix warnings
---
src/lyxfind.cpp | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/src/lyxfind.cpp b/src/lyxfind.cpp
index 70de6c9..c3b59bb 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);
More information about the lyx-cvs
mailing list