]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormExternal.h
fix crash with "save as"
[lyx.git] / src / frontends / xforms / FormExternal.h
index 35c39958960f655cb5a1a02d62480b589b38c16e..97e410a8a0a3e7e9f9ae9c77449513d0ddf7c905 100644 (file)
@@ -1,17 +1,14 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormExternal.h
- * \author Asger Alstrup
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Asger Alstrup Nielsen
  * \author John Levon
- * \author Angus Leeming, a.leeming@ic.ac.uk
+ * \author Angus Leeming 
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMEXTERNAL_H
 #include "insets/insetexternal.h"
 
 class ControlExternal;
-struct FD_form_external;
+struct FD_external;
 
 /// The class for editing External insets via a dialog
-class FormExternal : public FormCB<ControlExternal, FormDB<FD_form_external> > {
+class FormExternal : public FormCB<ControlExternal, FormDB<FD_external> > {
 public:
        ///
-       FormExternal(ControlExternal &);
-
+       FormExternal();
 private:
        /// apply changes
-       void apply();
+       virtual void apply();
 
        /// build the dialog
-       void build();
+       virtual void build();
 
        /// update the dialog
-       void update();
+       virtual void update();
 
        /// Filter the inputs on callback from xforms
-       ButtonPolicy::SMInput input(FL_OBJECT *, long);
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
 
        ///
        void updateComboChange();
-
-       /// Fdesign generated method
-       FD_form_external * build_external();
 };
 
 #endif // FORMEXTERNAL_H