(file) Return to DeclContext.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/DeclContext.cpp between version 1.11 and 1.13

version 1.11, 2002/05/24 19:20:33 version 1.13, 2002/07/30 16:14:53
Line 1 
Line 1 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,
   // The Open Group, Tivoli Systems
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 70 
Line 71 
         const String& first = _qualifierDeclarations[i].first;         const String& first = _qualifierDeclarations[i].first;
         const CIMQualifierDecl& second = _qualifierDeclarations[i].second;         const CIMQualifierDecl& second = _qualifierDeclarations[i].second;
  
         if (CIMName::equal(first, nameSpace) &&          // ATTN-RK-20020729: Use correct equal method
             CIMName::equal(second.getName(), name))          //if (first.equal(nameSpace)) &&
           if (String::equalNoCase(first, nameSpace) &&
               second.getName().equal(name))
         {         {
             return second;             return second;
         }         }
Line 90 
Line 93 
         const String& first = _classDeclarations[i].first;         const String& first = _classDeclarations[i].first;
         const CIMClass& second = _classDeclarations[i].second;         const CIMClass& second = _classDeclarations[i].second;
  
         if (CIMName::equal(first, nameSpace) &&          // ATTN-RK-20020729: Use correct equal method
             CIMName::equal(second.getClassName(), name))          //if (first.equal(nameSpace)) &&
           if (String::equalNoCase(first, nameSpace) &&
               second.getClassName().equal(name))
         {         {
             return second;             return second;
         }         }


Legend:
Removed from v.1.11  
changed lines
  Added in v.1.13

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2