Prevent a warning message complaining about starting an already running timer.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@6261 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-02-25 16:53:24 +00:00
parent 26dbfaef07
commit 3c47c4e892
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2003-02-25 Angus Leeming <leeming@lyx.org>
* forkedcontr.C (timer): don't start a running timer.
2002-12-04 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* filetools.C (getExtFromContents): remove detection of epsi
@ -14,7 +18,7 @@
* lyxsum.C: an ugly hack to compile with non-gnu linkers
2002-11-12 Angus Leeming <aleem@pneumon.bg.ic.ac.uk>
2002-11-12 Angus Leeming <leeming@lyx.org>
* lstrings.C (getVectorFromString): #if 0 -> #if 1 until Lars devises
a solution that he likes and which actually works.

View File

@ -146,7 +146,7 @@ void ForkedcallsController::timer()
}
}
if (!forkedCalls.empty()) {
if (!forkedCalls.empty() && !timeout_->running()) {
timeout_->start();
}

View File

@ -105,3 +105,6 @@ What's new
- enable the lyx2lyx debug level to be set
- squash a potential bug in the PreviewLoader before it bites.
- don't cause a warning message to complain about starting an already running
timer. Don't start it ;-)