mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-03 16:31:13 +00:00
Add session support to some more dialogs.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20542 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5bca0d424a
commit
90d1935d94
@ -377,7 +377,7 @@ void GuiCharacterDialog::change_adaptor()
|
|||||||
void GuiCharacterDialog::closeEvent(QCloseEvent * e)
|
void GuiCharacterDialog::closeEvent(QCloseEvent * e)
|
||||||
{
|
{
|
||||||
slotClose();
|
slotClose();
|
||||||
e->accept();
|
GuiDialog::closeEvent(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -120,7 +120,7 @@ void GuiCitationDialog::closeEvent(QCloseEvent * e)
|
|||||||
{
|
{
|
||||||
clearSelection();
|
clearSelection();
|
||||||
controller().clearParams();
|
controller().clearParams();
|
||||||
e->accept();
|
GuiDialog::closeEvent(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -277,7 +277,7 @@ void GuiGraphicsDialog::change_bb()
|
|||||||
void GuiGraphicsDialog::closeEvent(QCloseEvent * e)
|
void GuiGraphicsDialog::closeEvent(QCloseEvent * e)
|
||||||
{
|
{
|
||||||
slotClose();
|
slotClose();
|
||||||
e->accept();
|
GuiDialog::closeEvent(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -183,7 +183,7 @@ void GuiRefDialog::closeEvent(QCloseEvent * e)
|
|||||||
{
|
{
|
||||||
slotClose();
|
slotClose();
|
||||||
reset_dialog();
|
reset_dialog();
|
||||||
e->accept();
|
GuiDialog::closeEvent(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -161,7 +161,7 @@ void GuiTabularDialog::change_adaptor()
|
|||||||
void GuiTabularDialog::closeEvent(QCloseEvent * e)
|
void GuiTabularDialog::closeEvent(QCloseEvent * e)
|
||||||
{
|
{
|
||||||
slotClose();
|
slotClose();
|
||||||
e->accept();
|
GuiDialog::closeEvent(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ void GuiThesaurusDialog::change_adaptor()
|
|||||||
void GuiThesaurusDialog::closeEvent(QCloseEvent * e)
|
void GuiThesaurusDialog::closeEvent(QCloseEvent * e)
|
||||||
{
|
{
|
||||||
slotClose();
|
slotClose();
|
||||||
e->accept();
|
GuiDialog::closeEvent(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user