]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.C
insetcharstyle drawing cosmetics
[lyx.git] / src / insets / insetlabel.C
index 7b2332cc0d04060c0aa71b0046293067ca9ae5d4..c3643f5b95a33fc3c36420ef5a8c00a4fa0559dc 100644 (file)
 #include "dispatchresult.h"
 #include "funcrequest.h"
 #include "InsetList.h"
-#include "iterators.h"
 #include "lyxtext.h"
 #include "paragraph.h"
+#include "pariterator.h"
+#include "sgml.h"
 
 #include "frontends/LyXView.h"
 
@@ -91,25 +92,27 @@ void changeRefsIfUnique(BufferView & bv, string const & from, string const & to)
 } // namespace anon
 
 
-DispatchResult
-InsetLabel::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
+void InsetLabel::priv_dispatch(LCursor & cur, FuncRequest & cmd)
 {
        switch (cmd.action) {
 
        case LFUN_INSET_MODIFY: {
                InsetCommandParams p;
                InsetCommandMailer::string2params("label", cmd.argument, p);
-               if (p.getCmdName().empty())
-                       return DispatchResult(false);
+               if (p.getCmdName().empty()) {
+                       cur.undispatched();
+                       break;
+               }
                if (p.getContents() != params().getContents())
                        changeRefsIfUnique(cur.bv(), params().getContents(),
                                                       p.getContents());
                setParams(p);
-               return DispatchResult(true, true);
+               break;
        }
 
        default:
-               return InsetCommand::priv_dispatch(cur, cmd);
+               InsetCommand::priv_dispatch(cur, cmd);
+               break;
        }
 }
 
@@ -133,7 +136,7 @@ int InsetLabel::plaintext(Buffer const &, ostream & os,
 int InsetLabel::linuxdoc(Buffer const &, ostream & os,
                         OutputParams const &) const
 {
-       os << "<label id=\"" << getContents() << "\" >";
+       os << "<label id=\"" << sgml::cleanID(getContents()) << "\" >";
        return 0;
 }
 
@@ -141,6 +144,6 @@ int InsetLabel::linuxdoc(Buffer const &, ostream & os,
 int InsetLabel::docbook(Buffer const &, ostream & os,
                        OutputParams const &) const
 {
-       os << "<anchor id=\"" << getContents() << "\">";
+       os << "<!-- anchor id=\"" << sgml::cleanID(getContents()) << "\" -->";
        return 0;
 }