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

View File

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