mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-14 01:22:33 +00:00
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:
parent
ba2a527740
commit
2fc48ca94f
@ -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>
|
2003-02-07 Juergen Spitzmueller <j.spitzmueller@gmx.de>
|
||||||
|
|
||||||
* QTabular.C (closeGUI): do not change if nothing has to
|
* QTabular.C (closeGUI): do not change if nothing has to
|
||||||
|
@ -170,11 +170,15 @@ void lyx_gui::start(string const & batch, vector<string> const & files)
|
|||||||
|
|
||||||
// FIXME
|
// FIXME
|
||||||
delete lyxserver;
|
delete lyxserver;
|
||||||
|
lyxserver = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void lyx_gui::exit()
|
void lyx_gui::exit()
|
||||||
{
|
{
|
||||||
|
delete lyxserver;
|
||||||
|
lyxserver = 0;
|
||||||
|
|
||||||
// we cannot call qApp->exit(0) - that could return us
|
// we cannot call qApp->exit(0) - that could return us
|
||||||
// into a static dialog return in the lyx code (for example,
|
// into a static dialog return in the lyx code (for example,
|
||||||
// load autosave file QMessageBox. We have to just get the hell
|
// load autosave file QMessageBox. We have to just get the hell
|
||||||
|
@ -30,7 +30,9 @@ What's new
|
|||||||
** Bug fixes
|
** Bug fixes
|
||||||
|
|
||||||
- fix bug where opening the tabular dialog would mark the document as
|
- 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
|
- in the dialogs, replace LaTeX font size names by LyX names for
|
||||||
consistency reasons and to resolve a translation conflict
|
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]
|
- fix strerror() build problem with some gcc/glibc versions [bug #874]
|
||||||
|
|
||||||
|
lyx2lyx: enable the debug level to be set.
|
||||||
|
Loading…
Reference in New Issue
Block a user