]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QERTDialog.h
Strip trailing whitespace.
[lyx.git] / src / frontends / qt2 / QERTDialog.h
index 7373a24b5bdeefcc149b0645397fdef50af0ae1c..64058d011499ae2553320aa8140ed8ffa93af886 100644 (file)
@@ -1,33 +1,30 @@
+// -*- C++ -*-
 /**
  * \file QERTDialog.h
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef QERTDIALOG_H
 #define QERTDIALOG_H
-#include <config.h>
+
 #include "ui/QERTDialogBase.h"
-#include "QERT.h"
 
-class QERTDialog : public QERTDialogBase
-{ Q_OBJECT
 
+class QERT;
+
+class QERTDialog : public QERTDialogBase {
+       Q_OBJECT
 public:
        QERTDialog(QERT * form);
-
 protected slots:
-       void change_adaptor() {
-               form_->changed();
-       }
+       virtual void change_adaptor();
 protected:
        virtual void closeEvent(QCloseEvent * e);
-
 private:
        QERT * form_;
 };