]> git.lyx.org Git - lyx.git/commitdiff
put UNICODE FIXMEs where they belong
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Thu, 2 Nov 2006 10:16:21 +0000 (10:16 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Thu, 2 Nov 2006 10:16:21 +0000 (10:16 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15689 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/insetlabel.C

index e578dd5ed92837c3190e1c966feadb5e8e88fc3c..a41cc440daa8882bc1172404a81dfd59664936cb 100644 (file)
@@ -65,13 +65,14 @@ void InsetLabel::doDispatch(LCursor & cur, FuncRequest & cmd)
 
        case LFUN_INSET_MODIFY: {
                InsetCommandParams p("label");
+               // FIXME UNICODE
                InsetCommandMailer::string2params("label", to_utf8(cmd.argument()), p);
                if (p.getCmdName().empty()) {
                        cur.noUpdate();
                        break;
                }
                if (p["name"] != params()["name"])
-                       // FIXME UNICODE
+                       // FIXME UNICODE
                        cur.bv().buffer()->changeRefsIfUnique(params()["name"],
                                                       p["name"], InsetBase::REF_CODE);
                setParams(p);
@@ -104,7 +105,6 @@ int InsetLabel::plaintext(Buffer const &, odocstream & os,
 int InsetLabel::docbook(Buffer const & buf, odocstream & os,
                        OutputParams const & runparams) const
 {
-        // FIXME UNICODE
        os << "<!-- anchor id=\""
            << sgml::cleanID(buf, runparams, getParam("name"))
            << "\" -->";