X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetcommand.h;h=6428e667fd006611b40e9b12438cebb3777e6f71;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=10eee357740d822f65b18a08dd5a7ceabdd73c01;hpb=5f2e3c4c43f8e1736a2b7654595dfe6c175b4b3b;p=lyx.git diff --git a/src/insets/insetcommand.h b/src/insets/insetcommand.h index 10eee35774..6428e667fd 100644 --- a/src/insets/insetcommand.h +++ b/src/insets/insetcommand.h @@ -32,7 +32,7 @@ public: InsetCommandParams(); /// explicit - InsetCommandParams( string const & n, + InsetCommandParams(string const & n, string const & c = string(), string const & o = string()); /// @@ -54,7 +54,7 @@ public: /// string const & getContents() const { return contents; } /// - void setCmdName( string const & n) { cmdname = n; } + void setCmdName(string const & n) { cmdname = n; } /// void setOptions(string const & o) { options = o; } /// @@ -62,7 +62,7 @@ public: /// string const getAsString() const; /// - void setFromString( string const & ); + void setFromString(string const &); private: /// string cmdname; @@ -83,12 +83,12 @@ public: virtual ~InsetCommand() { hideDialog(); } /// void write(Buffer const *, std::ostream & os) const - { p_.write( os ); } + { p_.write(os); } /// virtual void read(Buffer const *, LyXLex & lex) - { p_.read( lex ); } + { p_.read(lex); } /// Can remove one InsetBibKey is modified - void scanCommand(string const & c) { p_.scanCommand( c ); }; + void scanCommand(string const & c) { p_.scanCommand(c); }; /// virtual int latex(Buffer const *, std::ostream &, bool fragile, bool free_spc) const; @@ -97,7 +97,7 @@ public: /// virtual int linuxdoc(Buffer const *, std::ostream &) const; /// - virtual int docBook(Buffer const *, std::ostream &) const; + virtual int docbook(Buffer const *, std::ostream &) const; /// Inset::Code lyxCode() const { return Inset::NO_CODE; }