]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MacroTable.h
Revert "Fix a number of signedness warnings"
[lyx.git] / src / mathed / MacroTable.h
index 96901829762434c897bf21fa7b564bfe0d46161d..b588ee2cf9cab540119335824879f93af9e5d2c3 100644 (file)
@@ -26,7 +26,6 @@ namespace lyx {
 class Buffer;
 class MathData;
 class InsetMathMacroTemplate;
-class Paragraph;
 class latexkeys;
 
 enum MacroType {
@@ -64,6 +63,8 @@ public:
        ///
        bool hidden() const;
        ///
+       docstring const htmlname() const;
+       ///
        docstring const xmlname() const;
        ///
        char const * MathMLtype() const;
@@ -72,7 +73,7 @@ public:
        ///
        void setSymbol(latexkeys const * sym) { sym_ = sym; }
        ///
-       DocIterator const & pos() { return pos_; }
+       DocIterator const & pos() const { return pos_; }
 
        /// lock while being drawn to avoid recursions
        int lock() const { return ++lockCount_; }