From c727c6db7f2dd7f6a727462f5d11964888d0e76e Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Wed, 17 Jan 2007 21:22:19 +0000 Subject: [PATCH] * src/insets/insetbase.h (forceDefaultParagraphs): Fix comment: Not all text classes have a "Standard" layout. What was meant here is the default layout of the text class. * src/paragraph.C (Paragraph::simpleTeXOnePar): ditto * src/output_latex.C (latexParagraphs): ditto git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16738 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/insetbase.h | 2 +- src/output_latex.C | 3 ++- src/paragraph.C | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/insets/insetbase.h b/src/insets/insetbase.h index 4f90fc1fa1..03aa357462 100644 --- a/src/insets/insetbase.h +++ b/src/insets/insetbase.h @@ -343,7 +343,7 @@ public: /// returns true if the inset can hold an inset of given type virtual bool insetAllowed(Code) const { return false; } /// if this inset has paragraphs should they be output all as default - /// paragraphs with "Standard" layout? + /// paragraphs with the default layout of the text class? virtual bool forceDefaultParagraphs(idx_type) const { return false; } /// diff --git a/src/output_latex.C b/src/output_latex.C index 1164fcc84b..a848193ddd 100644 --- a/src/output_latex.C +++ b/src/output_latex.C @@ -514,7 +514,8 @@ void latexParagraphs(Buffer const & buf, // well we have to check if we are in an inset with unlimited // length (all in one row) if that is true then we don't allow // any special options in the paragraph and also we don't allow - // any environment other then "Standard" to be valid! + // any environment other than the default layout of the + // text class to be valid! if (!par->forceDefaultParagraphs()) { LyXLayout_ptr const & layout = par->layout(); diff --git a/src/paragraph.C b/src/paragraph.C index f360d4b5d5..8c3631eca7 100644 --- a/src/paragraph.C +++ b/src/paragraph.C @@ -945,7 +945,8 @@ bool Paragraph::simpleTeXOnePar(Buffer const & buf, // well we have to check if we are in an inset with unlimited // length (all in one row) if that is true then we don't allow // any special options in the paragraph and also we don't allow - // any environment other than "Standard" to be valid! + // any environment other than the default layout of the text class + // to be valid! bool asdefault = forceDefaultParagraphs(); if (asdefault) { -- 2.39.5