]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetNote.cpp
Restore XHTML output for InsetListings.
[lyx.git] / src / insets / InsetNote.cpp
index 918e6f30c87969908220891ffef8a3cb892dbe81..3d641a8a683b9ebf7d8f5699d10853734787fe61 100644 (file)
@@ -115,7 +115,7 @@ void InsetNoteParams::read(Lexer & lex)
 //
 /////////////////////////////////////////////////////////////////////
 
-InsetNote::InsetNote(Buffer const & buf, string const & label)
+InsetNote::InsetNote(Buffer * buf, string const & label)
        : InsetCollapsable(buf)
 {
        params_.type = notetranslator().find(label);
@@ -128,12 +128,6 @@ InsetNote::~InsetNote()
 }
 
 
-docstring InsetNote::editMessage() const
-{
-       return _("Opened Note Inset");
-}
-
-
 docstring InsetNote::name() const 
 {
        return from_ascii("Note:" + notetranslator().find(params_.type));
@@ -181,7 +175,7 @@ void InsetNote::doDispatch(Cursor & cur, FuncRequest & cmd)
 
        case LFUN_INSET_MODIFY:
                string2params(to_utf8(cmd.argument()), params_);
-               setLayout();
+               setButtonLabel();
                break;
 
        case LFUN_INSET_DIALOG_UPDATE:
@@ -326,12 +320,12 @@ int InsetNote::docbook(odocstream & os, OutputParams const & runparams_in) const
 }
 
 
-docstring InsetNote::xhtml(odocstream & os, OutputParams const & rp) const
+docstring InsetNote::xhtml(XHTMLStream & xs, OutputParams const & rp) const
 {
        if (params_.type == InsetNoteParams::Note)
                return docstring();
 
-       return InsetCollapsable::xhtml(os, rp);
+       return InsetCollapsable::xhtml(xs, rp);
 }