summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-08-26 07:17:11 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-08-26 07:17:11 (GMT)
commitf55dd81190ba172da1498677513d261715b5b647 (patch)
tree10b5ecc2f798e1d5595640beba0f4adab16ca336 /Source/cmMakefile.cxx
parent1410eef27a2634ec1d2a0c57a66fd783133cfbf8 (diff)
downloadCMake-f55dd81190ba172da1498677513d261715b5b647.zip
CMake-f55dd81190ba172da1498677513d261715b5b647.tar.gz
CMake-f55dd81190ba172da1498677513d261715b5b647.tar.bz2
COMP: parent is not used anymore with this patch, since now the name is
given as a vector of components Alex
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 534ab02..24126f9 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -1481,20 +1481,18 @@ cmSourceGroup* cmMakefile::GetSourceGroup(const std::vector<std::string>&name)
}
void cmMakefile::AddSourceGroup(const char* name,
- const char* regex,
- const char* parent)
+ const char* regex)
{
if (name)
{
std::vector<std::string> nameVector;
nameVector.push_back(name);
- AddSourceGroup(nameVector, regex, parent);
+ AddSourceGroup(nameVector, regex);
}
}
void cmMakefile::AddSourceGroup(const std::vector<std::string>& name,
- const char* regex,
- const char *parent)
+ const char* regex)
{
cmSourceGroup* sg = 0;
std::vector<std::string> currentName;