commit ce64021ce9bda28f5b5aa4a6255f6062880badae
Author: Juergen Spitzmueller <sp...@lyx.org>
Date:   Sun Jul 28 15:53:05 2024 +0200

    Allow DocIterator::paragraphGotoArgument() to return id() without pos()
    
    We need this for the forthcoming reference-to-paragraph function
    
    (cherry picked from commit e3b36208eddc87025afb005f828316029bcf8f4f)
---
 src/DocIterator.cpp | 7 ++++---
 src/DocIterator.h   | 5 +++--
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/src/DocIterator.cpp b/src/DocIterator.cpp
index ace4498a56..b8f43a19bb 100644
--- a/src/DocIterator.cpp
+++ b/src/DocIterator.cpp
@@ -225,11 +225,12 @@ CursorSlice const & DocIterator::innerTextSlice() const
 }
 
 
-docstring DocIterator::paragraphGotoArgument() const
+docstring DocIterator::paragraphGotoArgument(bool const nopos) const
 {
        CursorSlice const & s = innerTextSlice();
-       return convert<docstring>(s.paragraph().id()) + ' ' +
-               convert<docstring>(s.pos());
+       return nopos ? convert<docstring>(s.paragraph().id())
+                    : convert<docstring>(s.paragraph().id())
+                      + ' ' + convert<docstring>(s.pos());
 }
 
 
diff --git a/src/DocIterator.h b/src/DocIterator.h
index 9475fcfb78..7c6f017b5f 100644
--- a/src/DocIterator.h
+++ b/src/DocIterator.h
@@ -167,8 +167,9 @@ public:
        Paragraph & innerParagraph() const;
        /// return the inner text slice.
        CursorSlice const & innerTextSlice() const;
-       // convert a DocIterator into an argument to LFUN_PARAGRAPH_GOTO
-       docstring paragraphGotoArgument() const;
+       /// convert a DocIterator into an argument to LFUN_PARAGRAPH_GOTO
+       /// \p nopos determines whether the cursor position is returned
+       docstring paragraphGotoArgument(bool const nopos = false) const;
        /// returns a DocIterator for the containing text inset
        DocIterator getInnerText() const;
        /// the first and last positions of a word at top cursor slice
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to