]> git.lyx.org Git - features.git/commitdiff
fix typos
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Sun, 15 Oct 2006 09:20:25 +0000 (09:20 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Sun, 15 Oct 2006 09:20:25 +0000 (09:20 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15336 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/FileDialog_private.C
src/insets/insetref.C

index c102b558ddeda0911723e833c61bb6c0f2c49d1c..159e751d454f263a82df2a1614e7e5ebb3286e57 100644 (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, '|'));
index 4d1d4fc1ef548ac8ef3e60a85355bc00f04fe369..6b321f523baa1d214ee7c5710aa7653eb30edcfd 100644 (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;
 }