summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyDefinitionMap.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmPropertyDefinitionMap.h')
-rw-r--r--Source/cmPropertyDefinitionMap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmPropertyDefinitionMap.h b/Source/cmPropertyDefinitionMap.h
index 736e243..68c3ff3 100644
--- a/Source/cmPropertyDefinitionMap.h
+++ b/Source/cmPropertyDefinitionMap.h
@@ -21,16 +21,16 @@ public std::map<cmStdString,cmPropertyDefinition>
{
public:
// define the property
- void DefineProperty(const char *name, cmProperty::ScopeType scope,
+ void DefineProperty(const cmStdString& name, cmProperty::ScopeType scope,
const char *ShortDescription,
const char *FullDescription,
bool chain);
// has a named property been defined
- bool IsPropertyDefined(const char *name);
+ bool IsPropertyDefined(const cmStdString& name);
// is a named property set to chain
- bool IsPropertyChained(const char *name);
+ bool IsPropertyChained(const cmStdString& name);
};
#endif