mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-01 21:45:23 +00:00
Fix bug #6649 - fix texrow structure generated by InsetIndex
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34181 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
cfffdd92aa
commit
e45427de38
@ -152,15 +152,19 @@ int InsetIndex::latex(odocstream & os,
|
|||||||
subst(spart2, from_ascii("\\"), docstring());
|
subst(spart2, from_ascii("\\"), docstring());
|
||||||
os << ppart;
|
os << ppart;
|
||||||
os << '@';
|
os << '@';
|
||||||
|
i += count_char(ppart, '\n');
|
||||||
}
|
}
|
||||||
docstring const tpart = *it;
|
docstring const tpart = *it;
|
||||||
os << tpart;
|
os << tpart;
|
||||||
|
i += count_char(tpart, '\n');
|
||||||
if (it2 < levels_plain.end())
|
if (it2 < levels_plain.end())
|
||||||
++it2;
|
++it2;
|
||||||
}
|
}
|
||||||
// write the bit that followed "|"
|
// write the bit that followed "|"
|
||||||
if (!cmd.empty())
|
if (!cmd.empty()) {
|
||||||
os << "|" << cmd;
|
os << "|" << cmd;
|
||||||
|
i += count_char(cmd, '\n');
|
||||||
|
}
|
||||||
os << '}';
|
os << '}';
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
@ -666,6 +666,7 @@ basic_string<Ch> const subst_char(basic_string<Ch> const & a,
|
|||||||
return tmp;
|
return tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Substitute all \a oldchar with \a newchar
|
/// Substitute all \a oldchar with \a newchar
|
||||||
docstring const subst_char(docstring const & a,
|
docstring const subst_char(docstring const & a,
|
||||||
docstring::value_type oldchar, docstring::value_type newchar)
|
docstring::value_type oldchar, docstring::value_type newchar)
|
||||||
@ -697,6 +698,7 @@ String const subst_string(String const & a,
|
|||||||
return lstr;
|
return lstr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
docstring const subst_string(docstring const & a,
|
docstring const subst_string(docstring const & a,
|
||||||
docstring const & oldstr, docstring const & newstr)
|
docstring const & oldstr, docstring const & newstr)
|
||||||
{
|
{
|
||||||
@ -742,6 +744,19 @@ docstring const subst(docstring const & a,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// Count all occurences of char \a chr inside \a str
|
||||||
|
int count_char(docstring const & str, docstring::value_type chr)
|
||||||
|
{
|
||||||
|
int count = 0;
|
||||||
|
docstring::const_iterator lit = str.begin();
|
||||||
|
docstring::const_iterator end = str.end();
|
||||||
|
for (; lit != end; ++lit)
|
||||||
|
if ((*lit) == chr)
|
||||||
|
count++;
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
docstring const trim(docstring const & a, char const * p)
|
docstring const trim(docstring const & a, char const * p)
|
||||||
{
|
{
|
||||||
LASSERT(p, /**/);
|
LASSERT(p, /**/);
|
||||||
|
@ -173,6 +173,9 @@ std::string const subst(std::string const & a,
|
|||||||
docstring const subst(docstring const & a,
|
docstring const subst(docstring const & a,
|
||||||
docstring const & oldstr, docstring const & newstr);
|
docstring const & oldstr, docstring const & newstr);
|
||||||
|
|
||||||
|
/// Count all occurences of char \a chr inside \a str
|
||||||
|
int count_char(docstring const & str, docstring::value_type chr);
|
||||||
|
|
||||||
/** Trims characters off the end and beginning of a string.
|
/** Trims characters off the end and beginning of a string.
|
||||||
\code
|
\code
|
||||||
trim("ccabccc", "c") == "ab".
|
trim("ccabccc", "c") == "ab".
|
||||||
|
Loading…
Reference in New Issue
Block a user