]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetnote.C
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetnote.C
index 5b3a995e62cfde21e6e4e6784199dd6392bfdd82..0fb0fb64709ff8fd868fdf1e596e25e46ecde18a 100644 (file)
@@ -46,36 +46,16 @@ InsetNote::InsetNote(BufferParams const & bp)
 }
 
 
-InsetNote::InsetNote(InsetNote const & in, bool same_id)
-       : InsetCollapsable(in, same_id)
+InsetNote::InsetNote(InsetNote const & in)
+       : InsetCollapsable(in)
 {
        init();
 }
 
 
-Inset * InsetNote::clone(Buffer const &, bool same_id) const
+Inset * InsetNote::clone() const
 {
-       return new InsetNote(*const_cast<InsetNote *>(this), same_id);
-}
-
-
-// This constructor is used for reading old InsetInfo
-InsetNote::InsetNote(Buffer const * buf, string const & contents,
-                    bool collapsed)
-       : InsetCollapsable(buf->params, collapsed)
-{
-       init();
-
-       Paragraph * par = inset.paragraph();
-       LyXFont font(LyXFont::ALL_INHERIT, buf->params.language);
-
-       // Since XForms doesn't support RTL, we can assume that old notes
-       // in RTL documents are written in English.
-       if (font.language()->RightToLeft())
-               font.setLanguage(default_language);
-
-       lyx::pos_type pos = 0;
-       buf->insertStringAsLines(par, pos, font, rtrim(contents, "\n"));
+       return new InsetNote(*this);
 }
 
 
@@ -85,7 +65,7 @@ string const InsetNote::editMessage() const
 }
 
 
-void InsetNote::write(Buffer const *buf, ostream & os) const
+void InsetNote::write(Buffer const * buf, ostream & os) const
 {
        os << getInsetName() << "\n";
        InsetCollapsable::write(buf, os);