]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMath.h
Please Coverity (code should be equivalent)
[lyx.git] / src / mathed / InsetMath.h
index b23ffb5179e1ef542352e49673ded594d5710a86..088fce6c2be97a281bf32112be25ebf8fbf1cffb 100644 (file)
@@ -162,8 +162,12 @@ public:
 
        /// identifies things that can get scripts
        virtual bool isScriptable() const { return false; }
-       /// is the a relational operator (used for splitting equations)
-       virtual bool isRelOp() const { return false; }
+       /// identifies a binary operators (used for spacing)
+       virtual bool isMathBin() const { return false; }
+       /// identifies relational operators (used for spacing and splitting equations)
+       virtual bool isMathRel() const { return false; }
+       /// identifies punctuation (used for spacing)
+       virtual bool isMathPunct() const { return false; }
        /// will this get written as a single block in {..}
        virtual bool extraBraces() const { return false; }