]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetoptarg.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetoptarg.h
index 8c3533ef0812f6d5c92a3d0bb30de61130f4a8fc..8ad724590110faebf14382c242664e5002daf318 100644 (file)
@@ -12,9 +12,6 @@
 #ifndef INSETOPTARG_H
 #define INSETOPTARG_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insettext.h"
 #include "insetcollapsable.h"
@@ -28,24 +25,22 @@ class InsetOptArg : public InsetCollapsable {
 public:
        InsetOptArg(BufferParams const &);
 
-       InsetOptArg(InsetOptArg const &, bool same_id = false);
-
+       InsetOptArg(InsetOptArg const &);
        /// make a duplicate of this inset
-       Inset * clone(Buffer const &, bool same_id = false) const;
-
+       virtual std::auto_ptr<InsetBase> clone() const;
        /// this inset is editable
        EDITABLE editable() const { return IS_EDITABLE; }
        /// code of the inset
-       Inset::Code lyxCode() const { return Inset::OPTARG_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::OPTARG_CODE; }
        /// return an message upon editing
        string const editMessage() const;
 
        /// Standard LaTeX output -- short-circuited
        int latex(Buffer const *, std::ostream &,
-                                       bool fragile, bool fp) const;
+                 LatexRunParams const &) const;
        /// Outputting the optional parameter of a LaTeX command
        int latexOptional(Buffer const *, std::ostream &,
-                                       bool fragile, bool fp) const;
+                         LatexRunParams const &) const;
        /// Write out tothe .lyx file
        void write(Buffer const * buf, std::ostream & os) const;
 };