mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
* 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
This commit is contained in:
parent
08ef9c544e
commit
c727c6db7f
@ -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; }
|
||||
|
||||
///
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user