]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormInclude.h
fix crash with "save as"
[lyx.git] / src / frontends / xforms / FormInclude.h
index e2f9a7b457aa309fabfda8aa5e230400f5f145c0..1af433ecb9430d56dd026087cc6c5a66e8c02aba 100644 (file)
@@ -1,12 +1,14 @@
 // -*- C++ -*-
 /**
  * \file FormInclude.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 Alejandro Aguilar Sierra
- * \author John Levon, moz@compsoc.man.ac.uk
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author John Levon
+ * \author Angus Leeming 
+ *
+ * Full author contact details are available in file CREDITS
  */
 #ifndef FORMINCLUDE_H
 #define FORMINCLUDE_H
 #include "FormBase.h"
 
 class ControlInclude;
-struct FD_form_include;
+struct FD_include;
 
 /** This class provides an XForms implementation of the Include Dialog.
  */
-class FormInclude : public FormCB<ControlInclude, FormDB<FD_form_include> > {
+class FormInclude : public FormCB<ControlInclude, FormDB<FD_include> > {
 public:
        ///
-       FormInclude(ControlInclude &);
-
+       FormInclude();
 private:
        /// Set the Params variable for the Controller.
        virtual void apply();
@@ -36,11 +37,6 @@ private:
        virtual void update();
        /// Filter the inputs on callback from xforms
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
-
-       ///
-       ButtonPolicy::SMInput inputBrowse();
-       /// Type definition from the fdesign produced header file.
-       FD_form_include * build_include();
 };
 
 #endif