commit b82a7279a8807fbf0cf14a3dd611e36f73b46d0b
Author: Jean-Marc Lasgouttes <lasgout...@lyx.org>
Date:   Tue Jun 20 00:06:57 2023 +0200

    Comments cleanup
---
 src/Paragraph.cpp |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp
index fed5a74..5487b80 100644
--- a/src/Paragraph.cpp
+++ b/src/Paragraph.cpp
@@ -1999,7 +1999,7 @@ Font const & Paragraph::getFirstFontSettings(BufferParams 
const & bparams) const
 
 
 // Gets the fully instantiated font at a given position in a paragraph
-// This is basically the same function as Text::GetFont() in text2.cpp.
+// This is basically the same function as TextMetrics::displayFont().
 // The difference is that this one is used for generating the LaTeX file,
 // and thus cosmetic "improvements" are disallowed: This has to deliver
 // the true picture of the buffer. (Asger)
@@ -2122,10 +2122,8 @@ void Paragraph::setFont(pos_type pos, Font const & font)
 {
        LASSERT(pos <= size(), return);
 
-       // First, reduce font against layout/label font
-       // Update: The setCharFont() routine in text2.cpp already
-       // reduces font, so we don't need to do that here. (Asger)
-
+       // Text::setCharFont() already reduces font against layout/label
+       // font, so we don't need to do that here. (Asger)
        d->fontlist_.set(pos, font);
 }
 
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to