]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLabel.cpp
following rev. 18724 boost/signal is not needed.
[lyx.git] / src / insets / InsetLabel.cpp
index 8ecd0e56e4a27b8985e01ff47e693331b3d9c444..95fb3e6bb5af59525152f8c3a44a5e8995a2ff24 100644 (file)
@@ -17,7 +17,7 @@
 #include "DispatchResult.h"
 #include "FuncRequest.h"
 #include "InsetList.h"
-#include "LyXText.h"
+#include "Text.h"
 #include "Paragraph.h"
 #include "ParIterator.h"
 #include "sgml.h"
@@ -86,7 +86,7 @@ void InsetLabel::doDispatch(Cursor & cur, FuncRequest & cmd)
 
 
 int InsetLabel::latex(Buffer const &, odocstream & os,
-                      OutputParams const &) const
+                     OutputParams const &) const
 {
        os << escape(getCommand());
        return 0;
@@ -94,7 +94,7 @@ int InsetLabel::latex(Buffer const &, odocstream & os,
 
 
 int InsetLabel::plaintext(Buffer const &, odocstream & os,
-                          OutputParams const &) const
+                         OutputParams const &) const
 {
        docstring const str = getParam("name");
        os << '<' << str << '>';
@@ -103,11 +103,11 @@ int InsetLabel::plaintext(Buffer const &, odocstream & os,
 
 
 int InsetLabel::docbook(Buffer const & buf, odocstream & os,
-                        OutputParams const & runparams) const
+                       OutputParams const & runparams) const
 {
        os << "<!-- anchor id=\""
-           << sgml::cleanID(buf, runparams, getParam("name"))
-           << "\" -->";
+          << sgml::cleanID(buf, runparams, getParam("name"))
+          << "\" -->";
        return 0;
 }