summaryrefslogtreecommitdiff
path: root/Source/cmSourceFile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-06 09:41:15 +0200
committerStephen Kelly <steveire@gmail.com>2015-06-07 09:29:30 +0200
commit7c0aa672fe4f1b5c4a15a89d90cd80009a1399d0 (patch)
tree299fc93196e6df18e1340f50b094df8924b69ded /Source/cmSourceFile.cxx
parent9058e27a431b01319b18cc4099780fa017ada113 (diff)
downloadcmake-7c0aa672fe4f1b5c4a15a89d90cd80009a1399d0.tar.gz
cmPropertyMap: Remove scope parameter from API where not used.
Diffstat (limited to 'Source/cmSourceFile.cxx')
-rw-r--r--Source/cmSourceFile.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmSourceFile.cxx b/Source/cmSourceFile.cxx
index 724ab3941f..df511d8320 100644
--- a/Source/cmSourceFile.cxx
+++ b/Source/cmSourceFile.cxx
@@ -299,7 +299,7 @@ bool cmSourceFile::Matches(cmSourceFileLocation const& loc)
//----------------------------------------------------------------------------
void cmSourceFile::SetProperty(const std::string& prop, const char* value)
{
- this->Properties.SetProperty(prop, value, cmProperty::SOURCE_FILE);
+ this->Properties.SetProperty(prop, value);
if (this->IsUiFile)
{
@@ -315,8 +315,7 @@ void cmSourceFile::SetProperty(const std::string& prop, const char* value)
void cmSourceFile::AppendProperty(const std::string& prop, const char* value,
bool asString)
{
- this->Properties.AppendProperty(prop, value, cmProperty::SOURCE_FILE,
- asString);
+ this->Properties.AppendProperty(prop, value, asString);
}
//----------------------------------------------------------------------------