]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
Revert this change as it sneaked in and wasn't discussed yet.
[lyx.git] / src / insets / insetlabel.h
index b4080df3a6bf1e25b3f4b10ffb1a73c46e2a2946..bdd77f4e9c433f605a7c935bc4e4651b92aa6d44 100644 (file)
@@ -3,7 +3,7 @@
  * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team
  *
@@ -27,7 +27,7 @@ public:
                return new InsetLabel(params(), same_id);
        }
        ///
-       string const getScreenLabel() const { return getContents(); }
+       string const getScreenLabel(Buffer const *) const { return getContents(); }
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
@@ -35,6 +35,8 @@ public:
        ///
        void edit(BufferView *, int, int, unsigned int);
        ///
+       void edit(BufferView * bv, bool front = true);
+       ///
        std::vector<string> const getLabelList() const;
        ///
        int latex(Buffer const *, std::ostream &,
@@ -44,7 +46,7 @@ public:
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int docBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &) const;
 };
 
 #endif