]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.h
fix #832
[lyx.git] / src / insets / insetcaption.h
index b97789eb52d729c92a0bd800ed9108e963333bc8..1b4feaee446918d3f269e26c527207b931fbac53 100644 (file)
@@ -1,21 +1,17 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetcaption.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 2000-2001 The LyX Team.
+ * \author Lars Gullik Bjønnes
  *
- *======================================================
+ * Full author contact details are available in file CREDITS
  */
 
-
 #ifndef INSETCAPTION_H
 #define INSETCAPTION_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insettext.h"
 
@@ -44,7 +40,7 @@ public:
        ///
        virtual
        void draw(BufferView * bv, LyXFont const & f,
-                         int baseline, float & x, bool cleared) const;
+                         int baseline, float & x) const;
        ///
        virtual
        int latex(Buffer const * buf, std::ostream & os,
@@ -54,7 +50,7 @@ public:
        int ascii(Buffer const * buf, std::ostream & os, int linelen) const;
        ///
        virtual
-       int docbook(Buffer const * buf, std::ostream & os) const;
+       int docbook(Buffer const * buf, std::ostream & os, bool mixcont) const;
 protected:
 private:
 };
@@ -68,14 +64,14 @@ bool InsetCaption::display() const
 
 
 inline
-bool InsetCaption::needFullRow() const 
+bool InsetCaption::needFullRow() const
 {
        return true;
 }
 
 
 inline
-Inset::Code InsetCaption::lyxCode() const 
+Inset::Code InsetCaption::lyxCode() const
 {
        return CAPTION_CODE;
 }