]> git.lyx.org Git - lyx.git/blobdiff - src/FontIterator.h
Fulfill promise to Andre: TextClass_ptr --> TextClassPtr.
[lyx.git] / src / FontIterator.h
index b5417877df4f5891fed94ae560bce4e9e6422086..44ecb3790813371662cc0c4de11a9cb2a7b628fb 100644 (file)
@@ -36,7 +36,7 @@ class FontIterator : std::iterator<std::forward_iterator_tag, Font>
 public:
        ///
        FontIterator(TextMetrics const & tm,
-               Paragraph const & par, pos_type pos);
+               Paragraph const & par, pit_type pit, pos_type pos);
        ///
        Font const & operator*() const;
        ///
@@ -50,6 +50,8 @@ private:
        ///
        Paragraph const & par_;
        ///
+       pit_type pit_;
+       ///
        pos_type pos_;
        ///
        Font font_;