summaryrefslogtreecommitdiffstats
path: root/Source/cmakemain.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-16 05:30:33 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-05-19 20:36:49 (GMT)
commit8ab1cce7047b637f504b4b83cecc104e5cd1adc5 (patch)
tree95e05e056f4e4a0f7d6415f1b0e56d4188043a43 /Source/cmakemain.cxx
parent2dd5d42f5254abda64009434f0b11a47ca16640e (diff)
downloadCMake-8ab1cce7047b637f504b4b83cecc104e5cd1adc5.zip
CMake-8ab1cce7047b637f504b4b83cecc104e5cd1adc5.tar.gz
CMake-8ab1cce7047b637f504b4b83cecc104e5cd1adc5.tar.bz2
cmMakefile: Rename method to something more appropriate.
Allow the name to be used for something more-suitable.
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r--Source/cmakemain.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx
index 577dcd9..e5f4700 100644
--- a/Source/cmakemain.cxx
+++ b/Source/cmakemain.cxx
@@ -130,7 +130,7 @@ static std::string cmakemainGetStack(void *clientdata)
cmMakefile* mf=cmakemainGetMakefile(clientdata);
if (mf)
{
- msg = mf->GetListFileStack();
+ msg = mf->FormatListFileStack();
if (!msg.empty())
{
msg = "\n Called from: " + msg;