]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpecialChar.h
Remove hardcoded values
[lyx.git] / src / insets / InsetSpecialChar.h
index ebdfb1a6e4f42754be5c731d5d19114d3744d41e..6474c571733ac2f7c8b574580e18a3387b15871d 100644 (file)
@@ -89,11 +89,13 @@ public:
        void validate(LaTeXFeatures &) const;
 
        /// should this inset be handled like a normal character?
-       bool isChar() const { return true; }
+       bool isChar() const;
        /// is this equivalent to a letter?
        bool isLetter() const;
        /// should we break lines after this inset?
        bool isLineSeparator() const;
+       /// Is the content of this inset part of the immediate (visible) text sequence?
+       bool isPartOfTextSequence() const { return isChar(); }
 private:
        Inset * clone() const { return new InsetSpecialChar(*this); }