]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetert.C
reformatting and remove using delc
[lyx.git] / src / insets / insetert.C
index 2abd91b8e4958cd55566101a9db3b4ef2cc6013a..c83ad95e4eee2653cdd879d8819dc011443efe36 100644 (file)
@@ -25,52 +25,52 @@ using std::ostream;
 
 InsetERT::InsetERT() : InsetCollapsable()
 {
-    setLabel(_("ERT"));
-    LyXFont font(LyXFont::ALL_SANE);
-    font.setLatex (LyXFont::ON);
-    labelfont = LyXFont(LyXFont::ALL_SANE);
-    labelfont.decSize();
-    labelfont.decSize();
-    labelfont.setColor(LColor::ert);
-    setAutoCollapse(false);
-    setInsetName("ERT");
+       setLabel(_("ERT"));
+       LyXFont font(LyXFont::ALL_SANE);
+       font.setLatex (LyXFont::ON);
+       labelfont = LyXFont(LyXFont::ALL_SANE);
+       labelfont.decSize();
+       labelfont.decSize();
+       labelfont.setColor(LColor::ert);
+       setAutoCollapse(false);
+       setInsetName("ERT");
 }
 
 
 void InsetERT::Write(Buffer const * buf, ostream & os) const 
 {
-    os << getInsetName() << "\n";
-    InsetCollapsable::Write(buf, os);
+       os << getInsetName() << "\n";
+       InsetCollapsable::Write(buf, os);
 }
 
 
-Inset * InsetERT::Clone() const
+Inset * InsetERT::Clone(Buffer const &) const
 {
-    InsetERT * result = new InsetERT;
-    result->inset->init(inset);
-
-    result->collapsed = collapsed;
-    return result;
+       InsetERT * result = new InsetERT;
+       result->inset.init(&inset);
+       
+       result->collapsed = collapsed;
+       return result;
 }
 
 
-char const * InsetERT::EditMessage() const 
+string const InsetERT::EditMessage() const 
 {
-    return _("Opened ERT Inset");
+       return _("Opened ERT Inset");
 }
 
 
 void InsetERT::SetFont(BufferView *, LyXFont const &, bool)
 {
-    WriteAlert(_("Impossible Operation!"),
-              _("Not permitted to change font-types inside ERT-insets!"),
-              _("Sorry."));
+       WriteAlert(_("Impossible Operation!"),
+                  _("Not permitted to change font-types inside ERT-insets!"),
+                  _("Sorry."));
 }
 
 
 void InsetERT::Edit(BufferView * bv, int x, int y, unsigned int button)
 {
-    InsetCollapsable::Edit(bv, x, y, button);
-    LyXFont font(LyXFont::ALL_SANE);
-    font.setLatex (LyXFont::ON);
+       InsetCollapsable::Edit(bv, x, y, button);
+       LyXFont font(LyXFont::ALL_SANE);
+       font.setLatex (LyXFont::ON);
 }