mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +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
|
||||
docstring const getLabel(docstring const & ucs4str) {
|
||||
// FIXME UNICOE
|
||||
// FIXME UNICODE
|
||||
string str = lyx::to_utf8(ucs4str);
|
||||
string label;
|
||||
string sc(split(str, label, '|'));
|
||||
|
@ -72,12 +72,12 @@ docstring const InsetRef::getScreenLabel(Buffer const &) const
|
||||
break;
|
||||
}
|
||||
}
|
||||
// FIXME UNIOCDE
|
||||
// FIXME UNICODE
|
||||
temp += lyx::from_utf8(getContents());
|
||||
|
||||
if (!isLatex && !getOptions().empty()) {
|
||||
temp += "||";
|
||||
// FIXME UNIOCDE
|
||||
// FIXME UNICODE
|
||||
temp += lyx::from_utf8(getOptions());
|
||||
}
|
||||
return temp;
|
||||
@ -100,7 +100,7 @@ int InsetRef::latex(Buffer const &, ostream & os,
|
||||
int InsetRef::plaintext(Buffer const &, lyx::odocstream & os,
|
||||
OutputParams const &) const
|
||||
{
|
||||
// FIXME UNIOCDE
|
||||
// FIXME UNICODE
|
||||
os << '[' << lyx::from_utf8(getContents()) << ']';
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user