connect up apply for external

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6358 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-03-06 05:52:13 +00:00
parent 80a4567bc2
commit 09ee1f5664
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2003-03-06 John Levon <levon@movementarian.org>
* QExternalDialog.C: connect Apply
2003-03-05 Angus Leeming <leeming@lyx.org> 2003-03-05 Angus Leeming <leeming@lyx.org>
* QWrap.[Ch]: changes to use the new Dialog-based scheme. * QWrap.[Ch]: changes to use the new Dialog-based scheme.

View File

@ -31,6 +31,8 @@ QExternalDialog::QExternalDialog(QExternal * form)
{ {
connect(okPB, SIGNAL(clicked()), connect(okPB, SIGNAL(clicked()),
form, SLOT(slotOK())); form, SLOT(slotOK()));
connect(applyPB, SIGNAL(clicked()),
form, SLOT(slotApply()));
connect(closePB, SIGNAL(clicked()), connect(closePB, SIGNAL(clicked()),
form, SLOT(slotClose())); form, SLOT(slotClose()));
} }