Changeset 3356 for ossie/trunk/ossie/parser/SPDParser.cpp
- Timestamp:
- 04/08/07 08:36:57 (6 years ago)
- Files:
-
- 1 modified
-
ossie/trunk/ossie/parser/SPDParser.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ossie/trunk/ossie/parser/SPDParser.cpp
r3353 r3356 210 210 bool SPDParser::isScaCompliant() 211 211 { 212 if(softPkgType == SPDParser::SCA_COMPLIANT) return true; 213 else return false; 212 if(softPkgType == "sca_compliant") 213 return true; 214 else 215 return false; 214 216 } 215 217 … … 217 219 bool SPDParser::isScaNonCompliant() 218 220 { 219 if(softPkgType == SPDParser::SCA_NON_COMPLIANT) return true; 220 else return false; 221 if(softPkgType == "sca_non_compliant") 222 return true; 223 else 224 return false; 221 225 } 222 226