* src/buffer_funcs.C (setCounter): Ignore the layout label string in

paragraphs without label


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13633 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-04-11 08:24:15 +00:00
parent d7bccc5f88
commit cc0a9f811c

View File

@ -496,7 +496,9 @@ void setCounter(Buffer const & buf, ParIterator & it)
}
par.params().labelString(s);
} else
} else if (layout->labeltype == LABEL_NO_LABEL)
par.params().labelString(string());
else
par.params().labelString(buf.B_(layout->labelstring()));
}