]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetMarginal.h
Update sk.po
[lyx.git] / src / insets / InsetMarginal.h
index 8c64fed8557d9b89fcefe280754b519429463524..008a3dd039fae9c64a622ca8eb879edd15d2a181 100644 (file)
@@ -25,17 +25,18 @@ namespace lyx {
 class InsetMarginal : public InsetFootlike {
 public:
        ///
-       InsetMarginal(Buffer const &);
+       InsetMarginal(Buffer *);
        ///
        InsetCode lyxCode() const { return MARGIN_CODE; }
        ///
-       docstring name() const { return from_ascii("Marginal"); }
+       docstring layoutName() const { return from_ascii("Marginal"); }
        ///
-       int plaintext(odocstream &, OutputParams const & runparams) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
        int docbook(odocstream &, OutputParams const & runparams) const;
-       ///
-       void addToToc(DocIterator const &);
+       /// Is the content of this inset part of the immediate (visible) text sequence?
+       bool isPartOfTextSequence() const { return false; }
 private:
        ///
        Inset * clone() const { return new InsetMarginal(*this); }