]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathNest.h
Fix doxygen output for grouped items. Without the /name tag doxygen shows the group...
[lyx.git] / src / mathed / InsetMathNest.h
index 2607f5bbbb63e61ec27daecbb8ba3aa734217601..659a1156fce48a328f1b4b1ca566e800e0ae5c67 100644 (file)
@@ -27,7 +27,7 @@ namespace lyx {
 class InsetMathNest : public InsetMath {
 public:
        /// nestinsets have a fixed size to start with
-       explicit InsetMathNest(idx_type ncells);
+       InsetMathNest(Buffer * buf, idx_type ncells);
        ///
        virtual ~InsetMathNest() {}
        ///
@@ -80,9 +80,9 @@ public:
        /// get notification when the cursor leaves this inset
        bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
 
-       /// direct access to the cell.
-       /// inlined because shows in profile.
        //@{
+       /// direct access to the cell.
+       /// Inlined because of performance reasons.
        MathData & cell(idx_type i) { return cells_[i]; }
        MathData const & cell(idx_type i) const { return cells_[i]; }
        //@}