X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathTabular.h;h=1d591924a53d23a32d7032a651ba060613580e3d;hb=e54ae72e5fac6f750c3f7972c74bb42b57f3a049;hp=56486e9c7b7d4732edb75c7d3263afc09bc91105;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/mathed/InsetMathTabular.h b/src/mathed/InsetMathTabular.h index 56486e9c7b..1d591924a5 100644 --- a/src/mathed/InsetMathTabular.h +++ b/src/mathed/InsetMathTabular.h @@ -22,14 +22,14 @@ namespace lyx { class InsetMathTabular : public InsetMathGrid { public: /// - InsetMathTabular(std::string const &, int m, int n); + InsetMathTabular(docstring const &, int m, int n); /// - InsetMathTabular(std::string const &, int m, int n, - char valign, std::string const & halign); + InsetMathTabular(docstring const &, int m, int n, + char valign, docstring const & halign); /// - InsetMathTabular(std::string const &, char valign, std::string const & halign); + InsetMathTabular(docstring const &, char valign, docstring const & halign); /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + bool metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -40,19 +40,18 @@ public: /// void write(WriteStream & os) const; /// - void infoize(std::ostream & os) const; + void infoize(odocstream & os) const; /// void normalize(NormalStream &) const; /// void maple(MapleStream &) const; private: - virtual std::auto_ptr doClone() const; + virtual std::auto_ptr doClone() const; /// - std::string name_; + docstring name_; }; - - } // namespace lyx + #endif