From 5c00d0f48978964a576070d5950556787aa365bb Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Tue, 13 Apr 2004 17:46:36 +0000 Subject: [PATCH] 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 --- src/ChangeLog | 6 ++++++ src/text.C | 1 + 2 files changed, 7 insertions(+) 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(); } -- 2.39.5