]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph_pimpl.h
remove noload/don't typeset
[lyx.git] / src / paragraph_pimpl.h
index 66a178e8e3ccce3bb0df28721f684d63264b11b1..a29de09e2446db3415a0737e4132ef26936a7c0e 100644 (file)
@@ -20,8 +20,6 @@
 #include "ParagraphParameters.h"
 #include "counters.h"
 
-#include <boost/array.hpp>
-
 class LyXLayout;
 
 struct Paragraph::Pimpl {
@@ -59,19 +57,7 @@ struct Paragraph::Pimpl {
                                  BufferParams const & bparams) const;
        ///
        Inset * inset_owner;
-       ///
-       boost::array<int, 10> counter_;
-
-       ///
-       friend struct matchIT;
-       ///
-       struct matchIT {
-               /// used by lower_bound and upper_bound
-               inline
-               int operator()(InsetTable const & a, InsetTable const & b) const {
-                       return a.pos < b.pos;
-               }
-       };
+       
        /** A font entry covers a range of positions. Notice that the
            entries in the list are inserted in random order.
            I don't think it's worth the effort to implement a more effective
@@ -159,8 +145,6 @@ struct Paragraph::Pimpl {
        static unsigned int paragraph_id;
        ///
        ParagraphParameters params;
-       ///
-       Counters ctrs;
 
 private:
        /// match a string against a particular point in the paragraph