]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QParagraph.h
Get rid of the static_casts.
[lyx.git] / src / frontends / qt2 / QParagraph.h
index f51218c7e1fe5d49fc88836a40e53b13f21a9e51..45745dc8e96e289af878ef499f553f033af5c440 100644 (file)
@@ -1,31 +1,34 @@
 // -*- C++ -*-
 /**
  * \file QParagraph.h
- * Copyright 2001 LyX Team
- * see the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Edwin Leuven <leuven@fee.uva.nl>
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author Edwin Leuven
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef QPARAGRAPH_H
 #define QPARAGRAPH_H
 
-#include <config.h>
-#include "Qt2Base.h"
+
+#include "QDialogView.h"
+#include "LString.h"
+#include <vector>
 
 class ControlParagraph;
 class QParagraphDialog;
-class Dialogs;
 
-class QParagraph :
-       public Qt2CB<ControlParagraph, Qt2DB<QParagraphDialog> >
-{
-       friend class QParagraphDialog;
 
+class QParagraph
+       : public QController<ControlParagraph, QView<QParagraphDialog> >
+{
 public:
-       QParagraph(ControlParagraph &, Dialogs &);
+       friend class QParagraphDialog;
 
+       QParagraph(Dialog &);
 private:
        /// Apply changes
        virtual void apply();
@@ -33,7 +36,7 @@ private:
        virtual void update_contents();
        /// build the dialog
        virtual void build_dialog();
-       
+
        std::vector<string> units_;
 };