Remove code replicating that in the base class.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3444 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-01-28 18:35:07 +00:00
parent 4e627bfe68
commit 2167a2f869
3 changed files with 5 additions and 10 deletions

View 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> 2002-01-28 Martin Vermeer <martin.vermeer@hut.fi>
* FormMathsDeco[hC]: * FormMathsDeco[hC]:

View File

@ -28,11 +28,6 @@ FormAboutlyx::FormAboutlyx(ControlAboutlyx & c)
: base_class(c, _("About LyX"), false) : base_class(c, _("About LyX"), false)
{} {}
FL_FORM * FormAboutlyx::form() const
{
if (dialog_.get()) return dialog_->form;
return 0;
}
void FormAboutlyx::build() void FormAboutlyx::build()
{ {

View File

@ -42,9 +42,6 @@ private:
/// Build the dialog /// Build the dialog
virtual void build(); virtual void build();
///
virtual FL_FORM * form() const;
/// Fdesign generated method /// Fdesign generated method
FD_form_aboutlyx * build_aboutlyx(); FD_form_aboutlyx * build_aboutlyx();
/// ///
@ -55,8 +52,6 @@ private:
FD_form_tab_license * build_tab_license(); FD_form_tab_license * build_tab_license();
/// Real GUI implementation. /// Real GUI implementation.
boost::scoped_ptr<FD_form_aboutlyx> dialog_;
///
boost::scoped_ptr<FD_form_tab_version> version_; boost::scoped_ptr<FD_form_tab_version> version_;
/// ///
boost::scoped_ptr<FD_form_tab_credits> credits_; boost::scoped_ptr<FD_form_tab_credits> credits_;