]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.h
fix #832
[lyx.git] / src / insets / insetparent.h
index aabce2c9746afc28924458aaa54e663115af3b56..1dc44baa7e688a731d23259510aaa376ecf1aa78 100644 (file)
@@ -12,9 +12,6 @@
 #ifndef INSET_PARENT_H
 #define INSET_PARENT_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcommand.h"
 
@@ -34,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;
        ///
-       void setParent(string fn) { setContents(fn); }
+       void setParent(string const & fn) { setContents(fn); }
 };
 #endif