X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfloatlist.C;h=8d2c565f094cfedad4a40994294d6208c7612f2e;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=b51064490b5b1f910fc329fa6d60943d11dcadee;hpb=aa41b3033b13395b920c93d087458de36aab6133;p=lyx.git diff --git a/src/insets/insetfloatlist.C b/src/insets/insetfloatlist.C index b51064490b..8d2c565f09 100644 --- a/src/insets/insetfloatlist.C +++ b/src/insets/insetfloatlist.C @@ -13,8 +13,11 @@ #include "gettext.h" #include "debug.h" + +using std::ostream; using std::endl; + InsetFloatList::InsetFloatList() : InsetCommand(InsetCommandParams()) { @@ -45,7 +48,7 @@ Inset::Code InsetFloatList::lyxCode() const } -void InsetFloatList::write(Buffer const *, std::ostream & os) const +void InsetFloatList::write(Buffer const *, ostream & os) const { os << "FloatList " << getCmdName() << "\n"; } @@ -85,7 +88,7 @@ void InsetFloatList::edit(BufferView * bv, bool) } -int InsetFloatList::latex(Buffer const *, std::ostream & os, bool, bool) const +int InsetFloatList::latex(Buffer const *, ostream & os, bool, bool) const { FloatList::const_iterator cit = floatList[getCmdName()]; @@ -112,7 +115,7 @@ int InsetFloatList::latex(Buffer const *, std::ostream & os, bool, bool) const } -int InsetFloatList::ascii(Buffer const * buffer, std::ostream & os, int) const +int InsetFloatList::ascii(Buffer const * buffer, ostream & os, int) const { os << getScreenLabel(buffer) << "\n\n";