Small fix from Angus

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1116 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2000-10-13 13:14:07 +00:00
parent 19b63a5ad0
commit bdfd1243a5
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-10-13 Angus Leeming <a.leeming@ic.ac.uk>
* src/frontends/xforms/FormInset.C (showInset): fix typo.
2000-10-13 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* ChangeLog: cleanup.

View File

@ -71,7 +71,7 @@ void FormCommand::showInset( InsetCommand * inset )
inset_ = inset;
params = inset->params();
ih_ = inset->hide.connect(slot(this, &FormInset::hide));
ih_ = inset->hide.connect(slot(this, &FormCommand::hide));
show();
}