]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetmarginal.C
updates to minipage inset
[lyx.git] / src / insets / insetmarginal.C
index 86bba7f28efcd51249a71be4cac387699f115792..758b7cfd25eddf98d461137536bdf6dd98ea8ba1 100644 (file)
@@ -35,17 +35,17 @@ InsetMarginal::InsetMarginal()
 }
 
 
-Inset * InsetMarginal::Clone() const
+Inset * InsetMarginal::Clone(Buffer const &) const
 {
-    InsetMarginal * result = new InsetMarginal;
-    result->inset->init(inset);
-    
-    result->collapsed = collapsed;
-    return result;
+       InsetMarginal * result = new InsetMarginal;
+       result->inset->init(inset);
+       
+       result->collapsed = collapsed;
+       return result;
 }
 
 
-char const * InsetMarginal::EditMessage() const
+string const InsetMarginal::EditMessage() const
 {
        return _("Opened Marginal Note Inset");
 }
@@ -54,31 +54,20 @@ char const * InsetMarginal::EditMessage() const
 int InsetMarginal::Latex(Buffer const * buf,
                         ostream & os, bool fragile, bool fp) const
 {
-    os << "\\marginpar{%\n";
-    
-    int i = inset->Latex(buf, os, fragile, fp);
-    os << "}%\n";
-    
-    return i + 2;
+       os << "\\marginpar{%\n";
+       
+       int i = inset->Latex(buf, os, fragile, fp);
+       os << "}%\n";
+       
+       return i + 2;
 }
 
 
 bool InsetMarginal::InsertInsetAllowed(Inset * in) const
 {
-    if ((in->LyxCode() == Inset::FOOT_CODE) ||
-       (in->LyxCode() == Inset::MARGIN_CODE)) {
-       return false;
-    }
-    return true;
+       if ((in->LyxCode() == Inset::FOOT_CODE) ||
+           (in->LyxCode() == Inset::MARGIN_CODE)) {
+               return false;
+       }
+       return true;
 }
-
-
-#if 0
-LyXFont InsetMarginal::GetDrawFont(BufferView * bv,
-                                  LyXParagraph * p, int pos) const
-{
-    LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
-    fn.decSize().decSize();
-    return fn;
-}
-#endif