]> git.lyx.org Git - features.git/commitdiff
Remove code replicating that in the base class.
authorAngus Leeming <leeming@lyx.org>
Mon, 28 Jan 2002 18:35:07 +0000 (18:35 +0000)
committerAngus Leeming <leeming@lyx.org>
Mon, 28 Jan 2002 18:35:07 +0000 (18:35 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3444 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/xforms/ChangeLog
src/frontends/xforms/FormAboutlyx.C
src/frontends/xforms/FormAboutlyx.h

index a2d9b6c022e78d5eafb5a798dfe9a1d26c81e2b1..af3136ed1d7cdd4c7e03336dd94aaee75ae2a2ae 100644 (file)
@@ -1,3 +1,8 @@
+2002-01-28  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       * FormAboutlyx.[Ch]: Removed redundant form() method and
+       dialog_ variable. They replicate that in the parent FormDB.
+
 2002-01-28  Martin Vermeer <martin.vermeer@hut.fi>
 
        * FormMathsDeco[hC]:
index b87ae46c9c48d3f22b0ce979aa23f7b8c94d4afb..306912f742806df1081250c10d8369f1387dae96 100644 (file)
@@ -28,11 +28,6 @@ FormAboutlyx::FormAboutlyx(ControlAboutlyx & c)
        : base_class(c, _("About LyX"), false)
 {}
 
-FL_FORM * FormAboutlyx::form() const
-{
-    if (dialog_.get()) return dialog_->form;
-    return 0;
-}
 
 void FormAboutlyx::build()
 {
index f648f20db4b19b75f05d427438cbbafe3960bb24..0a6de74eaf8052a7882c020f3265949a570ff0ef 100644 (file)
@@ -42,9 +42,6 @@ private:
        /// Build the dialog
        virtual void build();
 
-       ///
-       virtual FL_FORM * form() const;
-
        /// Fdesign generated method
        FD_form_aboutlyx * build_aboutlyx();
        ///
@@ -55,8 +52,6 @@ private:
        FD_form_tab_license * build_tab_license();
 
        /// Real GUI implementation.
-       boost::scoped_ptr<FD_form_aboutlyx> dialog_;
-       ///
        boost::scoped_ptr<FD_form_tab_version> version_;
        ///
        boost::scoped_ptr<FD_form_tab_credits> credits_;