diff options
author | Daniel Eiband <daniel.eiband@brainlab.com> | 2019-08-29 15:31:44 (GMT) |
---|---|---|
committer | Daniel Eiband <daniel.eiband@brainlab.com> | 2019-08-29 20:51:58 (GMT) |
commit | 2d888e339064d39ae894b4df567441539c8c65da (patch) | |
tree | 759702a363c9204ea9c1b072f4c4260d5694324b /Source/cmCPluginAPI.cxx | |
parent | 3ec986ce8e8df269eb6b6b9f37e12b02194168fd (diff) | |
download | CMake-2d888e339064d39ae894b4df567441539c8c65da.zip CMake-2d888e339064d39ae894b4df567441539c8c65da.tar.gz CMake-2d888e339064d39ae894b4df567441539c8c65da.tar.bz2 |
cmSourceFile: Rename mutating GetFullPath() overload
Rename mutating GetFullPath() overload to ResolveFullPath().
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index f0c1845..b20f595 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -536,7 +536,7 @@ void CCONV* cmGetSource(void* arg, const char* name) // Create a proxy source file object for this source. cmCPluginAPISourceFile* sf = new cmCPluginAPISourceFile; sf->RealSourceFile = rsf; - sf->FullPath = rsf->GetFullPath(); + sf->FullPath = rsf->ResolveFullPath(); sf->SourceName = cmSystemTools::GetFilenameWithoutLastExtension(sf->FullPath); sf->SourceExtension = |