From 063a28917143ad4cb4654dc0bcecddf240dffb6f Mon Sep 17 00:00:00 2001 From: Martin Vermeer Date: Mon, 20 Aug 2007 04:58:29 +0000 Subject: [PATCH] small Note cleanup git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19655 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetNote.cpp | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/src/insets/InsetNote.cpp b/src/insets/InsetNote.cpp index 73b4c7d179..ac98846b06 100644 --- a/src/insets/InsetNote.cpp +++ b/src/insets/InsetNote.cpp @@ -184,8 +184,6 @@ void InsetNote::setButtonLabel() { docstring const label = notetranslator_loc().find(params_.type); setLabel(label); - // isn't this an identity? - MV - setLabelFont(layout_.labelfont); } @@ -280,23 +278,17 @@ int InsetNote::latex(Buffer const & buf, odocstream & os, return 0; OutputParams runparams(runparams_in); - string type; if (params_.type == InsetNoteParams::Comment) { - type = "comment"; runparams.inComment = true; // Ignore files that are exported inside a comment runparams.exportdata.reset(new ExportData); - } else if (params_.type == InsetNoteParams::Greyedout) - type = "lyxgreyedout"; - else if (params_.type == InsetNoteParams::Framed) - type = "framed"; - else if (params_.type == InsetNoteParams::Shaded) - type = "shaded"; + } odocstringstream ss; - ss << "%\n\\begin{" << from_ascii(type) << "}\n"; + //ss << "%\n\\begin{" << from_ascii(type) << "}\n"; + ss << "%\n\\begin{" << from_ascii(layout_.latexname) << "}\n"; InsetText::latex(buf, ss, runparams); - ss << "\n\\end{" << from_ascii(type) << "}\n"; + ss << "\n\\end{" << from_ascii(layout_.latexname) << "}\n"; // the space after the comment in 'a[comment] b' will be eaten by the // comment environment since the space before b is ignored with the // following latex output: -- 2.39.2