X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetcollapsable.C;h=e4015dd1cf24a5d968aec31aeb854c53e016e80d;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=7a04702f9e425426c8a38c37a8f017be0f1762c3;hpb=9987ffaee8932c18807af7f6ce076eb57f0a54cf;p=lyx.git diff --git a/src/insets/insetcollapsable.C b/src/insets/insetcollapsable.C index 7a04702f9e..e4015dd1cf 100644 --- a/src/insets/insetcollapsable.C +++ b/src/insets/insetcollapsable.C @@ -19,21 +19,25 @@ #include "lyxfont.h" #include "BufferView.h" #include "Painter.h" -#include "insets/insettext.h" -#include "support/LOstream.h" -#include "support/lstrings.h" #include "debug.h" #include "lyxtext.h" #include "font.h" #include "lyxlex.h" -class LyXText; +#include "insets/insettext.h" +#include "support/LOstream.h" +#include "support/lstrings.h" + +using std::vector; using std::ostream; using std::endl; using std::max; +class LyXText; + + InsetCollapsable::InsetCollapsable(bool collapsed) : UpdatableInset(), collapsed_(collapsed), button_length(0), button_top_y(0), button_bottom_y(0), @@ -382,19 +386,19 @@ int InsetCollapsable::latex(Buffer const * buf, ostream & os, } -int InsetCollapsable::ascii(Buffer const *buf, std::ostream & os, int ll) const +int InsetCollapsable::ascii(Buffer const * buf, ostream & os, int ll) const { return inset.ascii(buf, os, ll); } -int InsetCollapsable::linuxdoc(Buffer const *buf, std::ostream & os) const +int InsetCollapsable::linuxdoc(Buffer const * buf, ostream & os) const { return inset.linuxdoc(buf, os); } -int InsetCollapsable::docbook(Buffer const *buf, std::ostream & os) const +int InsetCollapsable::docbook(Buffer const * buf, ostream & os) const { return inset.docbook(buf, os); } @@ -564,7 +568,7 @@ void InsetCollapsable::resizeLyXText(BufferView * bv, bool force) const } -std::vector const InsetCollapsable::getLabelList() const +vector const InsetCollapsable::getLabelList() const { return inset.getLabelList(); } @@ -646,7 +650,7 @@ void InsetCollapsable::setLabel(string const & l) const bool InsetCollapsable::searchForward(BufferView * bv, string const & str, - bool const & cs, bool const & mw) + bool cs, bool mw) { bool found = inset.searchForward(bv, str, cs, mw); if (first_after_edit && !found) @@ -657,7 +661,7 @@ bool InsetCollapsable::searchForward(BufferView * bv, string const & str, bool InsetCollapsable::searchBackward(BufferView * bv, string const & str, - bool const & cs, bool const & mw) + bool cs, bool mw) { bool found = inset.searchBackward(bv, str, cs, mw); if (first_after_edit && !found)