]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetArgument.cpp
update tex2lyx tests
[lyx.git] / src / insets / InsetArgument.cpp
index 88085cfb0327a07e21a92b462ed02380b4251f30..c4708c8d42f468be0222d07bd0249cc86942315f 100644 (file)
@@ -22,7 +22,6 @@
 #include "InsetList.h"
 #include "Language.h"
 #include "Layout.h"
-#include "Lexer.h"
 #include "ParIterator.h"
 #include "TexRow.h"
 #include "texstream.h"
 #include "support/debug.h"
 #include "support/docstream.h"
 #include "support/gettext.h"
+#include "support/Lexer.h"
 #include "support/lstrings.h"
 
 using namespace std;
 
 namespace lyx {
 
+using support::Lexer;
 
 InsetArgument::InsetArgument(Buffer * buf, string const & name)
     : InsetCollapsible(buf), name_(name), labelstring_(docstring()),
@@ -356,7 +357,7 @@ void InsetArgument::latexArgument(otexstream & os,
        os << presetarg;
        if (!presetarg.empty() && !ts.str.empty())
                os << ", ";
-       os << move(ts);
+       os << std::move(ts);
        if (add_braces)
                os << '}';
        os << rdelim;