]> git.lyx.org Git - features.git/commitdiff
Code rules.
authorRichard Heck <rgheck@comcast.net>
Tue, 26 Feb 2008 01:37:05 +0000 (01:37 +0000)
committerRichard Heck <rgheck@comcast.net>
Tue, 26 Feb 2008 01:37:05 +0000 (01:37 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23241 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetCommandParams.cpp

index e749cb4b22b3b3f26cd3bb2c9dd4142496c78fd7..fe48fe9d90857d9408f76505be4f8c63eda4548f 100644 (file)
@@ -49,15 +49,15 @@ ParamInfo::ParamData::ParamData(std::string const & s, ParamType t) :
 
 bool ParamInfo::ParamData::isOptional() const
 {
-       return type_ == ParamInfo::LATEX_OPTIONAL ||
-              type_ == ParamInfo::LATEX_KV_OPTIONAL;
+       return type_ == ParamInfo::LATEX_OPTIONAL
+           || type_ == ParamInfo::LATEX_KV_OPTIONAL;
 }
 
 
 bool ParamInfo::ParamData::isKeyValArg() const
 {
        return type_ == ParamInfo::LATEX_KV_REQUIRED 
-               || type_ == ParamInfo::LATEX_KV_OPTIONAL;
+           || type_ == ParamInfo::LATEX_KV_OPTIONAL;
 }