summaryrefslogtreecommitdiffstats
path: root/Source/cmFindProgramCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-09-01 17:42:14 (GMT)
committerBrad King <brad.king@kitware.com>2015-09-02 14:17:21 (GMT)
commited4de3c9849f323c735929ad3e32d2450ce303a9 (patch)
tree382017148aec91e994906a35a07f42e26f1402ff /Source/cmFindProgramCommand.h
parentbf32b95efed986eed7f5e0c568c5bc9559bcb854 (diff)
downloadCMake-ed4de3c9849f323c735929ad3e32d2450ce303a9.zip
CMake-ed4de3c9849f323c735929ad3e32d2450ce303a9.tar.gz
CMake-ed4de3c9849f323c735929ad3e32d2450ce303a9.tar.bz2
cmFindProgramCommand: Use Names member instead of passing it
Diffstat (limited to 'Source/cmFindProgramCommand.h')
-rw-r--r--Source/cmFindProgramCommand.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmFindProgramCommand.h b/Source/cmFindProgramCommand.h
index 70f758f..2881aac 100644
--- a/Source/cmFindProgramCommand.h
+++ b/Source/cmFindProgramCommand.h
@@ -52,11 +52,9 @@ public:
cmTypeMacro(cmFindProgramCommand, cmFindBase);
-protected:
- std::string FindProgram(std::vector<std::string> names);
-
private:
- std::string FindAppBundle(std::vector<std::string> names);
+ std::string FindProgram();
+ std::string FindAppBundle();
std::string GetBundleExecutable(std::string bundlePath);
};