]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.h
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetparent.h
index b47a2be3a32bc4577e5035fbc27c4bc61e0f6c5e..ec2be9c618b6854ef9d24b4c5463f55aca8b2959 100644 (file)
@@ -31,19 +31,17 @@ public:
                return new InsetParent(params(), buffer, same_id);
        }
        ///
+       dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
        string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        Inset::Code lyxCode() const { return Inset::PARENT_CODE; }
        ///
-       void edit(BufferView *, int, int, mouse_button::state);
-       ///
-       void edit(BufferView * bv, bool front = true);
-       ///
        int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+                 LatexRunParams const &) const;
        ///
-       void setParent(string fn) { setContents(fn); }
+       void setParent(string const & fn) { setContents(fn); }
 };
 #endif