git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5637 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-11-15 02:53:47 +00:00
parent 4747a1433c
commit 0774540fbb
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2002-11-15 John Levon <levon@movementarian.org>
* ControlPrefs.h:
* ControlPrefs.C: use setParams()
2002-11-15 John Levon <levon@movementarian.org>
* ControlButtons.h: make OKButton() virtual for prefs

View File

@ -38,10 +38,9 @@ ControlPrefs::ControlPrefs(LyXView & lv, Dialogs & d)
{}
void ControlPrefs::update()
void ControlPrefs::setParams()
{
rc_ = lyxrc;
view().update();
}

View File

@ -68,7 +68,7 @@ public:
private:
/// get current lyxrc
virtual void update();
virtual void setParams();
/// apply current lyxrc
virtual void apply();