]> git.lyx.org Git - lyx.git/blobdiff - src/support/types.h
make "make distcheck" work
[lyx.git] / src / support / types.h
index 5ecde9747f946ddbcb5b02ab8139c7c473eda04b..cb1de177ac3d12c29b1b85ee2b2d61ebb4619695 100644 (file)
@@ -22,11 +22,13 @@ namespace lyx {
 
        /// a type for positions used in paragraphs
        // needs to be signed for a while to hold the special value -1 that is
-       // used there...
+       // used there
        typedef ptrdiff_t  pos_type;
 
        /// a type for paragraph offsets
-       typedef ptrdiff_t  paroffset_type;
+       // FIXME: should be unsigned as well.
+       // however, simply changing it breaks a downward loop somewhere...
+       typedef ptrdiff_t  pit_type;
 
        /// a type for the nesting depth of a paragraph
        typedef size_t     depth_type;