mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Fix wrong label found by cppcheck
It was not intended to ignore the return value of expandParagraphLabel().
This commit is contained in:
parent
1ad4d9e657
commit
7450d24eec
@ -1997,7 +1997,7 @@ docstring Paragraph::expandParagraphLabel(Layout const & layout,
|
||||
docstring parent(fmt, i + 1, j - i - 1);
|
||||
docstring label = from_ascii("??");
|
||||
if (tclass.hasLayout(parent))
|
||||
docstring label = expandParagraphLabel(tclass[parent], bparams,
|
||||
label = expandParagraphLabel(tclass[parent], bparams,
|
||||
process_appendix);
|
||||
fmt = docstring(fmt, 0, i) + label
|
||||
+ docstring(fmt, j + 1, docstring::npos);
|
||||
|
Loading…
Reference in New Issue
Block a user