]> git.lyx.org Git - lyx.git/blobdiff - src/Text.h
Remove special code for CJK that is no longer required (amends e665715fc4).
[lyx.git] / src / Text.h
index b54277beefa3069b5d676fc5cb94d934e5cfd9cd..a177a8321794dd1bad0ded4692608a6bf1aebfca 100644 (file)
@@ -109,6 +109,8 @@ public:
 
        ///
        void toggleFree(Cursor & cur, Font const &, bool toggleall = false);
+       /// Stack to save recent text propterty applications
+       std::vector<docstring> getFreeFonts() const;
 
        /// ???
        /// FIXME: replace Cursor with DocIterator.
@@ -299,13 +301,13 @@ public:
 
        /// delete double spaces, leading spaces, and empty paragraphs around old cursor.
        /// \retval true if a change has happened and we need a redraw.
-       /// FIXME: replace Cursor with DocIterator. This is not possible right
-       /// now because recordUndo() is called which needs a Cursor.
+       /// Handles undo.
        static bool deleteEmptyParagraphMechanism(Cursor & cur,
                Cursor & old, bool & need_anchor_change);
 
        /// delete double spaces, leading spaces, and empty paragraphs
        /// from \first to \last paragraph
+       /// Does NOT handle undo (responsibility of the caller)
        void deleteEmptyParagraphMechanism(pit_type first, pit_type last, bool trackChanges);
 
        /// To resolve macros properly the texts get their DocIterator.