X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSplit.h;h=959c013b1dd4f26e01c34561c7cf597f9001e8b3;hb=fc6ce7cd08562fd7bab4427880b46390bb7d2f07;hp=213bea6bcc15b11f4abeefb68d0f304c43e6844b;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/mathed/InsetMathSplit.h b/src/mathed/InsetMathSplit.h index 213bea6bcc..959c013b1d 100644 --- a/src/mathed/InsetMathSplit.h +++ b/src/mathed/InsetMathSplit.h @@ -21,18 +21,16 @@ namespace lyx { class InsetMathSplit : public InsetMathGrid { public: /// - explicit InsetMathSplit(std::string const & name, char valign = 'c'); - + explicit InsetMathSplit(docstring const & name, char valign = 'c'); /// void draw(PainterInfo & pi, int x, int y) const; - /// - bool getStatus(LCursor & cur, FuncRequest const & cmd, + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & flag) const; void write(WriteStream & os) const; /// - void infoize(std::ostream & os) const; + void infoize(odocstream & os) const; /// void validate(LaTeXFeatures & features) const; /// @@ -40,12 +38,12 @@ public: /// char defaultColAlign(col_type); private: - virtual std::auto_ptr doClone() const; /// - std::string name_; + virtual std::auto_ptr doClone() const; + /// + docstring name_; }; - } // namespace lyx #endif