Fix the missing "Figure #:" label from the caption of a figure float.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8652 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2004-04-13 17:46:36 +00:00
parent 571594d508
commit 5c00d0f489
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2004-04-05 Angus Leeming <leeming@lyx.org>
* text.C (redoParagraphs): add call to updateCounters(), thereby
fixing the missing "Figure #:" label from the caption of a
figure float.
2004-04-13 Angus Leeming <leeming@lyx.org>
* text3.C (dispatch): call Inset::.notifyCursorLeaves when the

View File

@ -1816,6 +1816,7 @@ void LyXText::redoParagraphs(par_type pit, par_type end)
for ( ; pit != end; ++pit)
redoParagraphInternal(pit);
updateParPositions();
updateCounters();
}