fix bug 865

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@6070 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-02-07 16:49:20 +00:00
parent ba2a527740
commit 2fc48ca94f
3 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-02-07 John Levon <levon@movementarian.org>
* lyx_gui.C: delete lyxserver pipes (bug 865)
2003-02-07 Juergen Spitzmueller <j.spitzmueller@gmx.de>
* QTabular.C (closeGUI): do not change if nothing has to

View File

@ -170,11 +170,15 @@ void lyx_gui::start(string const & batch, vector<string> const & files)
// FIXME
delete lyxserver;
lyxserver = 0;
}
void lyx_gui::exit()
{
delete lyxserver;
lyxserver = 0;
// we cannot call qApp->exit(0) - that could return us
// into a static dialog return in the lyx code (for example,
// load autosave file QMessageBox. We have to just get the hell

View File

@ -30,7 +30,9 @@ What's new
** Bug fixes
- fix bug where opening the tabular dialog would mark the document as
changed [bug #849, qt only]
changed [bug #849, Qt only]
- delete lyxserver pipes on exit [bug #865, Qt only]
- in the dialogs, replace LaTeX font size names by LyX names for
consistency reasons and to resolve a translation conflict
@ -39,3 +41,4 @@ What's new
- fix strerror() build problem with some gcc/glibc versions [bug #874]
lyx2lyx: enable the debug level to be set.