summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
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.h
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.h')
-rw-r--r--Source/cmMakefile.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index d2cd1d2..7915f08 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -293,15 +293,14 @@ public:
/**
* Add a root source group for consideration when adding a new source.
*/
- void AddSourceGroup(const char* name, const char* regex=0,
- const char* parent=0);
+ void AddSourceGroup(const char* name, const char* regex=0);
/**
* Add a source group for consideration when adding a new source.
* name is tokenized.
*/
void AddSourceGroup(const std::vector<std::string>& name,
- const char* regex=0, const char* parent=0);
+ const char* regex=0);
#endif