mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-24 13:48:59 +00:00
fix typos
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15336 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7affaf47e9
commit
3db6e94596
@ -31,7 +31,7 @@ namespace {
|
|||||||
|
|
||||||
/// return the Qt form of the label
|
/// return the Qt form of the label
|
||||||
docstring const getLabel(docstring const & ucs4str) {
|
docstring const getLabel(docstring const & ucs4str) {
|
||||||
// FIXME UNICOE
|
// FIXME UNICODE
|
||||||
string str = lyx::to_utf8(ucs4str);
|
string str = lyx::to_utf8(ucs4str);
|
||||||
string label;
|
string label;
|
||||||
string sc(split(str, label, '|'));
|
string sc(split(str, label, '|'));
|
||||||
|
@ -72,12 +72,12 @@ docstring const InsetRef::getScreenLabel(Buffer const &) const
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// FIXME UNIOCDE
|
// FIXME UNICODE
|
||||||
temp += lyx::from_utf8(getContents());
|
temp += lyx::from_utf8(getContents());
|
||||||
|
|
||||||
if (!isLatex && !getOptions().empty()) {
|
if (!isLatex && !getOptions().empty()) {
|
||||||
temp += "||";
|
temp += "||";
|
||||||
// FIXME UNIOCDE
|
// FIXME UNICODE
|
||||||
temp += lyx::from_utf8(getOptions());
|
temp += lyx::from_utf8(getOptions());
|
||||||
}
|
}
|
||||||
return temp;
|
return temp;
|
||||||
@ -100,7 +100,7 @@ int InsetRef::latex(Buffer const &, ostream & os,
|
|||||||
int InsetRef::plaintext(Buffer const &, lyx::odocstream & os,
|
int InsetRef::plaintext(Buffer const &, lyx::odocstream & os,
|
||||||
OutputParams const &) const
|
OutputParams const &) const
|
||||||
{
|
{
|
||||||
// FIXME UNIOCDE
|
// FIXME UNICODE
|
||||||
os << '[' << lyx::from_utf8(getContents()) << ']';
|
os << '[' << lyx::from_utf8(getContents()) << ']';
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user