X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftabular.h;h=b972d0aa3c7bc4b5330790c1e45e74048625bd95;hb=ba62665f966508db5a4de6864f4aa7374c5a5356;hp=add8f0aeec1b92fe908fa546a4c190e981e653aa;hpb=31bc611f342db3e6dd6a71ab66450e46c4dfb5b6;p=lyx.git diff --git a/src/tabular.h b/src/tabular.h index add8f0aeec..b972d0aa3c 100644 --- a/src/tabular.h +++ b/src/tabular.h @@ -317,10 +317,9 @@ public: // int docbook(Buffer const & buf, odocstream & os, OutputParams const &) const; /// - int plaintext(Buffer const &, odocstream &, - OutputParams const & runparams, - int const depth, - bool onlydata, unsigned char delim) const; + void plaintext(Buffer const &, odocstream &, + OutputParams const & runparams, int const depth, + bool onlydata, unsigned char delim) const; /// bool isMultiColumn(idx_type cell) const; /// @@ -604,19 +603,19 @@ public: int TeXRow(odocstream &, row_type const row, Buffer const & buf, OutputParams const &) const; /// - // helper function for ASCII returns number of newlines + // helper functions for plain text /// - int asciiTopHLine(odocstream &, row_type row, - std::vector const &) const; + bool plaintextTopHLine(odocstream &, row_type row, + std::vector const &) const; /// - int asciiBottomHLine(odocstream &, row_type row, - std::vector const &) const; + bool plaintextBottomHLine(odocstream &, row_type row, + std::vector const &) const; /// - int asciiPrintCell(Buffer const &, odocstream &, - OutputParams const &, - idx_type cell, row_type row, col_type column, - std::vector const &, - bool onlydata) const; + void plaintextPrintCell(Buffer const &, odocstream &, + OutputParams const &, + idx_type cell, row_type row, col_type column, + std::vector const &, + bool onlydata) const; /// auxiliary function for docbook int docbookRow(Buffer const & buf, odocstream & os, row_type, OutputParams const &) const;