]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormError.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormError.h
index 08342a8963abb95fb64ec1adbb1d9212582f694d..fc95d9a2e3bc50df6eefe5c3573fce378a280d4e 100644 (file)
@@ -1,36 +1,30 @@
-/*
+// -*- C++ -*-
+/**
  * \file FormError.h
- * This file is part of
- * ====================================================== 
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Angus Leeming
  *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
- * \author Angus Leeming, a.leeming@.ac.uk
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMERROR_H
 #define FORMERROR_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "FormBase.h"
+#include "FormDialogView.h"
+
 
 class ControlError;
-struct FD_form_error;
+struct FD_error;
 
 /** This class provides an XForms implementation of the Error Dialog.
  */
-class FormError : public FormCB<ControlError, FormDB<FD_form_error> > {
+class FormError : public FormController<ControlError, FormView<FD_error> > {
 public:
        /// Constructor
-       FormError(ControlError &);
-
+       FormError(Dialog &);
 private:
        /// not needed.
        virtual void apply() {}
@@ -38,9 +32,6 @@ private:
        virtual void build();
        /// Update dialog before showing it
        virtual void update();
-
-       /// Fdesign generated method
-       FD_form_error * build_error();
 };
 
 #endif // FORMERROR_H