X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetoptarg.C;h=d5ed89d3c9a3c4e8cbe75258857e58af8fac750a;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=2bb2f937a45cc8b71fa87717e4de0e963a06df13;hpb=0d449056ef9ace3ef737e4b9aba8d3994615dc18;p=lyx.git diff --git a/src/insets/insetoptarg.C b/src/insets/insetoptarg.C index 2bb2f937a4..d5ed89d3c9 100644 --- a/src/insets/insetoptarg.C +++ b/src/insets/insetoptarg.C @@ -19,8 +19,8 @@ #include -using lyx::docstring; -using lyx::odocstream; + +namespace lyx { using std::string; using std::auto_ptr; @@ -90,7 +90,7 @@ int InsetOptArg::plaintext(Buffer const &, odocstream &, int InsetOptArg::latexOptional(Buffer const & buf, odocstream & os, OutputParams const & runparams) const { - lyx::odocstringstream ss; + odocstringstream ss; int ret = InsetText::latex(buf, ss, runparams); docstring str = ss.str(); if (str.find(']') != docstring::npos) @@ -98,3 +98,6 @@ int InsetOptArg::latexOptional(Buffer const & buf, odocstream & os, os << '[' << str << ']'; return ret; } + + +} // namespace lyx