]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetOptArg.cpp
This should be the last of the commits refactoring the InsetLayout code.
[lyx.git] / src / insets / InsetOptArg.cpp
index 964c04e578384c539f11877893d818cff857a1f8..c5da19b62d72443340f3f3d6db95c09625573098 100644 (file)
 
 #include "InsetOptArg.h"
 
-#include "debug.h"
-#include "gettext.h"
-
+#include "support/debug.h"
 #include "support/docstream.h"
+#include "support/gettext.h"
 
+using namespace std;
 
 namespace lyx {
 
 
 InsetOptArg::InsetOptArg(BufferParams const & ins)
        : InsetCollapsable(ins)
-{
-       setLabel(_("opt"));
-}
+{}
 
 
 InsetOptArg::InsetOptArg(InsetOptArg const & in)
        : InsetCollapsable(in)
-{
-       setLabel(_("opt"));
-}
+{}
 
 
 Inset * InsetOptArg::clone() const
@@ -47,7 +43,7 @@ docstring const InsetOptArg::editMessage() const
 }
 
 
-void InsetOptArg::write(Buffer const & buf, std::ostream & os) const
+void InsetOptArg::write(Buffer const & buf, ostream & os) const
 {
        os << "OptArg" << "\n";
        InsetCollapsable::write(buf, os);