]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MacroTable.h
Assure correct spacing of colored items in mathed
[lyx.git] / src / mathed / MacroTable.h
index eb613cae073c1987b272f62893324dab9fd1ccc3..acc4004109d8e4e9e85398554977b48bd0915e4e 100644 (file)
@@ -39,7 +39,7 @@ enum MacroType {
 class MacroData {
 public:
        /// Constructor to make STL containers happy
-       MacroData(Buffer * buf = 0);
+       explicit MacroData(Buffer * buf = 0);
        /// Create lazy MacroData which only queries the macro template when needed
        MacroData(Buffer * buf, DocIterator const & pos);
        /// Create non-lazy MacroData which directly queries the macro template
@@ -60,10 +60,12 @@ public:
        ///
        std::vector<docstring> const & defaults() const;
        ///
-       std::string const requires() const;
+       std::string const required() const;
        ///
        bool hidden() const;
        ///
+       docstring const htmlname() const;
+       ///
        docstring const xmlname() const;
        ///
        char const * MathMLtype() const;