X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfoot.C;h=b9be27578b7835d9ee2798557114dcf6c0365da1;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=43bad6df9734e257faf317908233c8dfcfc8d0c2;hpb=8b67659646c6850377cb9f44a2a0a22c0e80840c;p=lyx.git diff --git a/src/insets/insetfoot.C b/src/insets/insetfoot.C index 43bad6df97..b9be27578b 100644 --- a/src/insets/insetfoot.C +++ b/src/insets/insetfoot.C @@ -23,8 +23,8 @@ #include "support/std_ostream.h" -using lyx::docstring; -using lyx::odocstream; + +namespace lyx { using std::string; using std::auto_ptr; @@ -35,7 +35,7 @@ InsetFoot::InsetFoot(BufferParams const & bp) : InsetFootlike(bp) { setLabel(_("foot")); - setInsetName("Foot"); + setInsetName(from_ascii("Foot")); } @@ -43,7 +43,7 @@ InsetFoot::InsetFoot(InsetFoot const & in) : InsetFootlike(in) { setLabel(_("foot")); - setInsetName("Foot"); + setInsetName(from_ascii("Foot")); } @@ -80,7 +80,7 @@ int InsetFoot::latex(Buffer const & buf, odocstream & os, } -int InsetFoot::docbook(Buffer const & buf, ostream & os, +int InsetFoot::docbook(Buffer const & buf, odocstream & os, OutputParams const & runparams) const { os << ""; @@ -89,3 +89,6 @@ int InsetFoot::docbook(Buffer const & buf, ostream & os, return i; } + + +} // namespace lyx