diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-02-07 20:35:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-08 18:05:33 (GMT) |
commit | 38c7544578f4154dfaaa0a55b118b79b11ec6ae1 (patch) | |
tree | 577fff435eaabbf552fa73fa2c143694cb9caec8 /Source | |
parent | dddbd2c7faf0a606200d5b03c549d348eceb87d7 (diff) | |
download | CMake-38c7544578f4154dfaaa0a55b118b79b11ec6ae1.zip CMake-38c7544578f4154dfaaa0a55b118b79b11ec6ae1.tar.gz CMake-38c7544578f4154dfaaa0a55b118b79b11ec6ae1.tar.bz2 |
stringapi: Use strings for documentation names
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmDocumentation.cxx | 4 | ||||
-rw-r--r-- | Source/cmDocumentation.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx index 9c27fc1..96b5f04 100644 --- a/Source/cmDocumentation.cxx +++ b/Source/cmDocumentation.cxx @@ -477,9 +477,9 @@ bool cmDocumentation::CheckOptions(int argc, const char* const* argv, } //---------------------------------------------------------------------------- -void cmDocumentation::SetName(const char* name) +void cmDocumentation::SetName(const std::string& name) { - this->NameString = name?name:""; + this->NameString = name; } //---------------------------------------------------------------------------- diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h index d5a7dd5..56a4151 100644 --- a/Source/cmDocumentation.h +++ b/Source/cmDocumentation.h @@ -56,7 +56,7 @@ public: void SetShowGenerators(bool showGen) { this->ShowGenerators = showGen; } /** Set the program name for standard document generation. */ - void SetName(const char* name); + void SetName(const std::string& name); /** Set a section of the documentation. Typical sections include Name, Usage, Description, Options */ |