* src/insets/insetert.C:

* src/insets/insetoptarg.C: add comment that we do not output anything
	for plaintext output INTENTIONALLY


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17244 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Michael Schmitt 2007-02-18 18:55:11 +00:00
parent e7f4618bcc
commit 2148e75116
2 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ int InsetERT::latex(Buffer const &, odocstream & os,
int InsetERT::plaintext(Buffer const &, odocstream &,
OutputParams const &) const
{
return 0;
return 0; // do not output TeX code
}

View File

@ -77,7 +77,7 @@ int InsetOptArg::latex(Buffer const &, odocstream &,
int InsetOptArg::plaintext(Buffer const &, odocstream &,
OutputParams const &) const
{
return 0;
return 0; // do not output optional arguments
}