mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
* Layout.cpp (read): fix ObsoletedBy and DependsOn for layout names
that contain underscores. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19053 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
dbd627f521
commit
f99d41a25a
@ -241,7 +241,8 @@ bool Layout::read(Lexer & lexrc, TextClass const & tclass)
|
||||
|
||||
case LT_OBSOLETEDBY: // replace with a known style
|
||||
if (lexrc.next()) {
|
||||
docstring const style = lexrc.getDocString();
|
||||
docstring const style =
|
||||
subst(lexrc.getDocString(), '_', ' ');
|
||||
|
||||
if (tclass.hasLayout(style)) {
|
||||
docstring const tmpname = name_;
|
||||
@ -262,7 +263,7 @@ bool Layout::read(Lexer & lexrc, TextClass const & tclass)
|
||||
|
||||
case LT_DEPENDSON:
|
||||
if (lexrc.next())
|
||||
depends_on_ = lexrc.getDocString();
|
||||
depends_on_ = subst(lexrc.getDocString(), '_', ' ');
|
||||
break;
|
||||
|
||||
case LT_MARGIN: // margin style definition.
|
||||
|
Loading…
Reference in New Issue
Block a user