]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormParagraph.h
fix crash with "save as"
[lyx.git] / src / frontends / xforms / FormParagraph.h
index c65c47469685fa8c4146b7efeecfec30dbbce089..c6caf228b1ac7fa9147e3a355eff8513ada3137a 100644 (file)
@@ -1,10 +1,12 @@
 // -*- C++ -*-
 /**
  * \file FormParagraph.h
- * Copyright 2001 The 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 Jürgen Vigna, jug@sad.it
+ * \author Jürgen Vigna
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORM_PARAGRAPH_H
@@ -15,6 +17,7 @@
 #endif
 
 #include "FormBase.h"
+#include "RadioButtonGroup.h"
 
 struct FD_paragraph;
 class ControlParagraph;
@@ -25,7 +28,7 @@ class FormParagraph
        : public FormCB<ControlParagraph, FormDB<FD_paragraph> > {
 public:
        ///
-       FormParagraph(ControlParagraph &, Dialogs &);
+       FormParagraph();
 private:
        /// Build the dialog
        virtual void build();
@@ -36,6 +39,9 @@ private:
 
        /// Filter the inputs on callback from xforms
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+
+       /// alignment radio buttons
+       RadioButtonGroup alignment_;
 };
 
 #endif