]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfootlike.C
fix #832
[lyx.git] / src / insets / insetfootlike.C
index 2cac4e252215c2523136992f0eefd0294c30ccd8..8254da3008498ef59c304211b70a660fdd3a94bb 100644 (file)
@@ -1,18 +1,15 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file insetfootlike.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *          Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "insetfootlike.h"
 #include "lyxfont.h"
@@ -56,7 +53,7 @@ void InsetFootlike::write(Buffer const * buf, ostream & os) const
 bool InsetFootlike::insetAllowed(Inset::Code code) const
 {
        if ((code == Inset::FOOT_CODE) || (code == Inset::MARGIN_CODE)
-           || (code ==Inset::FLOAT_CODE))
+           || (code == Inset::FLOAT_CODE))
                return false;
        return InsetCollapsable::insetAllowed(code);
 }