From: Georg Baum Date: Wed, 17 Jan 2007 21:22:19 +0000 (+0000) Subject: * src/insets/insetbase.h X-Git-Tag: 1.6.10~11155 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c727c6db7f2dd7f6a727462f5d11964888d0e76e;p=lyx.git * 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 --- 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) {