]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / inseturl.h
index b382bc7c69ad18339a944491e64b700763ac7b30..6ad0f0aacb2ad8ee11cfcf44d89b8b87a43749c8 100644 (file)
@@ -23,17 +23,17 @@ class InsetUrl : public InsetCommand {
 public:
        ///
        explicit
-       InsetUrl(InsetCommandParams const &, bool same_id = false);
+       InsetUrl(InsetCommandParams const &);
        ///
        ~InsetUrl();
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetUrl(params(), same_id);
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetUrl(params()));
        }
        ///
        dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-       Inset::Code lyxCode() const { return Inset::URL_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::URL_CODE; }
        ///
        void validate(LaTeXFeatures &) const;
        ///
@@ -43,8 +43,8 @@ public:
        ///
        bool display() const { return false; }
        ///
-       int latex(Buffer const *, std::ostream &, LatexRunParams const &,
-                 bool fragile, bool free_spc) const;
+       int latex(Buffer const *, std::ostream &,
+                 LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///