fix typos

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15336 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-10-15 09:20:25 +00:00
parent 7affaf47e9
commit 3db6e94596
2 changed files with 4 additions and 4 deletions

View File

@ -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, '|'));

View File

@ -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;
}