]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetindex.h
index 051d78cd3f7d8f4cc2230d236d8d99768d9a0339..ec68765ac03b271b0fe11414cd76c3312274cbdd 100644 (file)
@@ -1,12 +1,12 @@
 // -*- C++ -*-
 /* This file is part of*
- * ====================================================== 
+ * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *         Copyright 1995 Matthias Ettrich
  *          Copyright 1996-2001 the LyX Team.
- * 
+ *
  * ====================================================== */
 
 #ifndef INSET_INDEX_H
@@ -20,7 +20,7 @@
 
 struct LaTeXFeatures;
 
-/** Used to insert index labels  
+/** Used to insert index labels
   */
 class InsetIndex : public InsetCommand {
 public:
@@ -31,7 +31,7 @@ public:
                return new InsetIndex(params(), same_id);
        }
        ///
-       string const getScreenLabel() const;
+       string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
@@ -40,6 +40,8 @@ public:
        void edit(BufferView * bv, bool front = true);
        ///
        Inset::Code lyxCode() const;
+       ///
+       int docbook(Buffer const *, std::ostream &) const;
 };
 
 
@@ -64,7 +66,7 @@ public:
        ///
        Inset::Code lyxCode() const;
        ///
-       string const getScreenLabel() const;
+       string const getScreenLabel(Buffer const *) const;
 };
 
 #endif