]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbutton.h
Make it compile when USE_BOOST_FORMAT is unset
[lyx.git] / src / insets / insetbutton.h
index c6a6a12ffc990b19befb5b43635076cb9fa60fdf..48d76b7165cec439d13bd2ffa7396f7280b94e56 100644 (file)
@@ -1,13 +1,15 @@
 // -*- C++ -*-
-/* This file is part of*
- * ====================================================== 
+/**
+ * \file insetbutton.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *      
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 2000 The LyX Team.
+ * \author Asger Alstrup Nielsen
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
  *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef INSET_BUTTON_H
 #define INSET_BUTTON_H
@@ -16,7 +18,7 @@
 #pragma interface
 #endif
 
-#include "lyxinset.h"
+#include "inset.h"
 #include "LString.h"
 
 /** Used to provide an inset that looks like a button.
@@ -34,8 +36,7 @@ public:
 
 protected:
        /// This should provide the text for the button
-       virtual string const getScreenLabel() const = 0;
+       virtual string const getScreenLabel(Buffer const *) const = 0;
 };
 
 #endif
-