]> git.lyx.org Git - features.git/commitdiff
small Note cleanup
authorMartin Vermeer <martin.vermeer@hut.fi>
Mon, 20 Aug 2007 04:58:29 +0000 (04:58 +0000)
committerMartin Vermeer <martin.vermeer@hut.fi>
Mon, 20 Aug 2007 04:58:29 +0000 (04:58 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19655 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetNote.cpp

index 73b4c7d179e1c57085c75de0127e10b4e74eab73..ac98846b06c2ae56ef670db38f3bf36684667885 100644 (file)
@@ -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: