]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph.h
Fix bug 2485 and crash on middle mouse paste on math
[lyx.git] / src / paragraph.h
index 27038e0ff19b24df5f4b36a59c98f6bce9280caa..29d499a267768203dc94a496cb05fd4c7d8f545d 100644 (file)
@@ -58,7 +58,7 @@ public:
        lyx::pos_type first, last;
 };
 
-       
+
 /// A Paragraph holds all text, attributes and insets in a text paragraph
 class Paragraph  {
 public:
@@ -70,9 +70,10 @@ public:
                /// try getInset() and crash. We should fix
                /// all these places.
                META_INSET = 1
+               //META_INSET = 0x200001  // above 0x10ffff, for ucs-4
        };
        ///
-       typedef char value_type;
+       typedef lyx::char_type value_type;
        ///
        typedef lyx::depth_type depth_type;
        ///
@@ -224,7 +225,7 @@ public:
 
        /// set change at pos
        void setChange(lyx::pos_type pos, Change::Type type);
-       
+
        /// set full change at pos
        void setChangeFull(lyx::pos_type pos, Change change);
 
@@ -396,7 +397,7 @@ public:
        RowList const & rows() const { return rows_; }
        ///
        RowSignature & rowSignature() const { return rowSignature_; }
-       
+
        /// LyXText::redoParagraph updates this
        Dimension & dim() { return dim_; }