From: Angus Leeming Date: Tue, 13 Apr 2004 17:46:36 +0000 (+0000) Subject: Fix the missing "Figure #:" label from the caption of a figure float. X-Git-Tag: 1.6.10~15314 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5c00d0f48978964a576070d5950556787aa365bb;p=lyx.git 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 --- diff --git a/src/ChangeLog b/src/ChangeLog index 3c70268038..40424c830d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2004-04-05 Angus Leeming + + * 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 * text3.C (dispatch): call Inset::.notifyCursorLeaves when the diff --git a/src/text.C b/src/text.C index a9eb292e9d..aeeee9743d 100644 --- a/src/text.C +++ b/src/text.C @@ -1816,6 +1816,7 @@ void LyXText::redoParagraphs(par_type pit, par_type end) for ( ; pit != end; ++pit) redoParagraphInternal(pit); updateParPositions(); + updateCounters(); }