]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcommand.C
prepare for 1.1.6pre2
[lyx.git] / src / insets / insetcommand.C
index 0530cc516e5bfa33d92ec795b996bc65fc2b70dc..b3ff8cbba3d5aa5c2ef566cd104c52b50e846000 100644 (file)
@@ -44,7 +44,7 @@ string const InsetCommandParams::getAsString() const
 void InsetCommandParams::setFromString( string const & b )
 {
        string::size_type idx = b.find("|++|");
-       if( idx == string::npos ) {
+       if (idx == string::npos) {
                cmdname = "";
                options  = "";
                contents = "";
@@ -55,7 +55,7 @@ void InsetCommandParams::setFromString( string const & b )
        string tmp = b.substr(idx+4);
 
        idx = tmp.find("|++|");
-       if( idx == string::npos ) {
+       if (idx == string::npos) {
                options = tmp;
        } else {
                options  = tmp.substr(0, idx);
@@ -199,7 +199,7 @@ int InsetCommand::Latex(Buffer const *, ostream & os,
 }
 
 
-int InsetCommand::Ascii(Buffer const *, ostream &) const
+int InsetCommand::Ascii(Buffer const *, ostream &, int) const
 {
        return 0;
 }